Update login.php

这个提交包含在:
Peter Goodhall 2023-02-08 14:50:36 +00:00
父节点 891a8d19e5
当前提交 53fc2397cb

查看文件

@ -39,21 +39,21 @@ body {
<?php $this->form_validation->set_error_delimiters('', ''); ?> <?php $this->form_validation->set_error_delimiters('', ''); ?>
<input type="hidden" name="id" value="<?php echo $this->uri->segment(3); ?>" /> <input type="hidden" name="id" value="<?php echo $this->uri->segment(3); ?>" />
<div> <div>
<label for="floatingInput">Username</label> <label for="floatingInput"><strong>Username<strong></label>
<input type="text" name="user_name" class="form-control" id="floatingInput" placeholder="Username" <input type="text" name="user_name" class="form-control" id="floatingInput" placeholder="Username"
value="<?php echo $this->input->post('user_name'); ?>"> value="<?php echo $this->input->post('user_name'); ?>">
</div> </div>
<div> <div>
<label for="floatingPassword">Password</label> <label for="floatingPassword"><strong>Password</strong></label>
<input type="password" name="user_password" class="form-control" id="floatingPassword" <input type="password" name="user_password" class="form-control" id="floatingPassword"
placeholder="Password"> placeholder="Password">
</div> </div>
<div> <div>
<p><a href="<?php echo site_url('user/forgot_password'); ?>">Forgot your password?</a></p> <p><small><a class="" href="<?php echo site_url('user/forgot_password'); ?>">Forgot your password?</a></small></p>
</div> </div>
<?php $this->load->view('layout/messages'); ?> <?php $this->load->view('layout/messages'); ?>
<button class="w-100 btn btn-info" type="submit">Log in</button> <button class="w-100 btn btn-info" type="submit">Login </button>
</form> </form>
</div> </div>
</div> </div>