Advertisement
Guest User

Untitled

a guest
May 14th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.76 KB | None | 0 0
  1. <h1>Registration</h1>
  2.  
  3. <?php echo $this->validation->error_string; ?>
  4.  
  5. <?php echo form_open('/usuarios/registrarse/'); ?>
  6.  
  7.     <label for="username">Username : </label>
  8.     <?php echo form_input('username'); ?>
  9.    
  10.     <label for="password">Password : </label>
  11.     <?php echo form_password('password'); ?>
  12.    
  13.     <label for="password2">Repeat Password : </label>
  14.     <?php echo form_password('password2'); ?>
  15.    
  16.     <label for="email">Email : </label>
  17.     <?php echo form_input('email'); ?>
  18.    
  19.     <label for="question">Secret Question : </label>
  20.     <?php echo form_input('question'); ?>
  21.    
  22.     <label for="answer">Answer : </label>
  23.     <?php echo form_input('answer'); ?>
  24.    
  25.     <label for="submit"> </label>
  26.     <?php echo form_submit('submit', 'Register Now'); ?>
  27.  
  28. <?php echo form_close(); ?>
  29. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement