这是我的Login.ctp文件代码
<?php
echo $this->Flash->render('auth');
echo $this->Form->create('User');
echo $this->Form->input('username');
echo $this->Form->input('password');
//echo $this->Form->input('full_name');
echo $this->Form->end('Log In');
?>