Login
';
echo $this->form->create(null, array('url' => '/login'));
echo $this->form->field('username',
array('type' => 'text', 'id' => 'f_username'));
echo $this->form->field('password',
array('type' => 'password', 'id' => 'f_password'));
echo $this->form->field('remember',
array('type' => 'checkbox', 'id' => 'f_remember', 'label' => 'Remember me'));
echo $this->form->submit('Login');
echo $this->form->end();
echo ' ';
}
echo '