这可能是我关于身份验证的第二个问题。但我仍然无法验证我的登录表单..因此我决定再次发布我的代码。那么谁能告诉我身份验证是如何完成的????
//this is my index page, where a user logs in
<div align="center">
<h2> ONLINE LIBRARY SYSTEM </h2>
<h4> If you have already registered into our library system . Please Login below </h4?
<br />
</div>
<div class="form">
<fieldset>
<?php
echo $this->Form->create('Member');
echo $this->Form->input('username');
echo $this->Form->input('password');
echo $this->Form->end('Login');
?>
<h4> If not registerd. Register here <?php echo $this->Html->link('Register Now',array('controller'=>'members','action'=>'register')); ?> </h4>
</fieldset>
</div>
我需要在我的索引函数中提到什么?
function index()
{
}
我必须在哪里编写/调用 Auth 组件......???谁能给我解释一下……请不要张贴食谱的链接……我读了将近 4 次,并没有完全理解