Hi, I have carefully followed the othAuth doc
http://bakery.cakephp.org/articles/view/othauth-0-5-documentation,
trying to get it to work, bur when I go to 
http://127.0.0.1/testsite/users/login,

I get the following errors..

Username
Warning (512): Method HtmlHelper::input does not exist [CORE\cake\libs
\view\helper.php, line
(512): Method HtmlHelper::tagErrorMsg does
Warning (512): Method HtmlHelper::checkbox does not exist [CORE\cake
\libs\view\helper.php, line 148]

Any ideas..

here is the login.ctp view..

<h1>Log In:</h1>
<form action="<?php echo $html->url('/users/login'); ?>"
method="post">
<div class="required">
    <label for="user_username">Username</label>
     <?php echo $html->input('User/username', array('id' =>
'user_username', 'size' => '50')) ?>
    <?php echo $html->tagErrorMsg('User/username', 'Please enter your
username') ?>
</div>
<div class="required">
    <label for="user_password">Password</label>
     <?php echo $html->input('User/passwd', array('id' =>
'user_passwd', 'size' => '32', 'type'=>"password")) ?>
    <?php echo $html->tagErrorMsg('User/passwd', 'Please enter your
password!') ?>
</div>

 <?php echo $html->checkbox("User/cookie");?>

<div class="submit"><input type="submit" value="Login" /></div>
</form>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to