Advertisement
ak47suk1

Untitled

May 26th, 2011
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.25 KB | None | 0 0
  1. <?php echo anchor('taxonomy', '<= Back to Main Page', 'id=wordz') ?>
  2. <div id="register_form">
  3.     <h1>Create an Account</h1>
  4.     <fieldset>
  5.         <legend>Personal Information</legend>
  6.         <?php
  7.        echo form_open('courseoutline/create_member');
  8.        echo "<p id=ayat /> First Name:";
  9.         echo form_input('first_name', '','id=inputlogin');
  10.         echo "<p id=ayat /> Last Name:";
  11.         echo form_input('last_name', '','id=inputlogin');
  12.         echo "<p id=ayat /> E-mail Address:";
  13.         echo form_input('email_address','','id=inputlogin')
  14.         ?>
  15.     </fieldset>
  16.     <fieldset>
  17.         <legend>Login Info</legend>
  18.         <?php
  19.        echo "<p id=ayat /> Username:";
  20.         echo form_input('username', '','id=inputlogin');
  21.         echo "<p id=ayat /> Password:";
  22.         echo form_password('password', '','id=inputlogin');
  23.         echo "<p id=ayat /> Password Confirmation:";
  24.         echo form_password('password', '','id=inputlogin');
  25.  
  26.         echo form_submit('submit', set_value('submit', 'Create Account'),'id=inputlogin')
  27.         ?>
  28.         <?php
  29.        echo validation_errors('<p id="error">');
  30.         ?>
  31.  
  32.  
  33.     </fieldset>
  34.  
  35. </div>
  36.  
  37. <?php
  38. echo br(1);
  39. echo anchor('taxonomy', '<= Back to Main Page', 'id=wordz') ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement