0

我开始使用 Ion Auth 并想制作一个自定义登录表单。我想知道在用户单击“提交”按钮并且验证消息错误后如何在此输入表单中保留和显示当前用户名?我看到这种方法在网站上使用了很多,但我找不到任何例子来说明如何做到这一点。

例如:在他没有正确密码的情况下......

注意到我默认测试了这个例子,当用户输入错误的密码时,会弹出错误消息,当点击提交时,他当前的用户名或电子邮件是空白的,不存储在输入表单中。

更新这里是我当前的代码:

控制器

    public function login() {

    // Validated login form
    $this->form_validation->set_rules('username', 'Username', 'required');
    $this->form_validation->set_rules('password', 'Password', 'required');

    // Get user input form
    $username = $this->input->post('username', TRUE);
    $password = $this->input->post('password', TRUE);

    // If it can't log in
    if ($this->form_validation->run() !== true) {
        $data['message'] = (validation_errors()) ? validation_errors() : $this->session->flashdata('message'); 

        $data['username'] = array(  'name'      => 'username', 
                                    'type'      => 'text',
                                    'value'     => set_value('username') ); 

        $data['password'] = array(  'name'  => 'password',
                                    'type'  => 'password' );

        $data['submit'] = array (        'type' => 'submit',
                                    'value' => 'Login' );   

        // Display login page
        $this->load->view('login', $data);
    } else {
        // User success login
        if ($this->ion_auth->login($username, $password)) {
            $this->session->set_flashdata('message', $this->ion_auth->messages());
            redirect($this->config->item('base_url'), 'refresh');               
        } else {
            // Display error
            $this->session->set_flashdata('message', $this->ion_auth->set_error('Invalid username or password.'));

            redirect('auth/login', 'refresh');
        }
    }
}

看法

<div id='login_form'>
<?php echo form_open("auth/login");?>
    <p><?php echo form_input($username);?></p>
    <p><?php echo form_password($password);?></p>

    <div id="message"><?php echo $message;?></div>
    <p id="submit"><?php echo form_submit($submit);?></p>
<?php echo form_close();?>

4

1 回答 1

0

set_value()如果为 false,您将使用保留该值form_validation,CodeIgniter 将保留该值。

例子:

<input type="text" 
       name="quantity" 
       value="<?php echo set_value('quantity', '0'); ?>" 
       size="50" />

参考: http ://codeigniter.com/user_guide/helpers/form_helper.html

于 2012-04-27T01:52:50.023 回答