I am attempting to implement obAuth into my application but i'm having
a problem with the password field. when I submit the form, I get:
Notice (8): Undefined index: password [APP/controllers/components/
ob_auth.php, line 37]
Code | Context
$data = array(
"username" => "test"
)
$username = "test"
I don't know why it's not finding the password I entered. Here is my
form:
<?php
if( $session->check('Message.auth') )echo $session->flash('auth');
echo $form->create('User',array("action"=>"login"));
echo $form->input('username');
echo $form->password('password');
echo $form->end('Login');
?>
I hope someone can help me with this.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---