Last active
March 26, 2017 19:25
-
-
Save MrJSdev/55edf83f9b0efb97ebf49e4361f4a717 to your computer and use it in GitHub Desktop.
HTML Code of Registration Form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form method="post"> | |
| <h3>Don't have an account?<br /> Create one now.</h3> | |
| <p><label>Last Name</label></p> | |
| <p><input type="text" value="" name="last_name" id="last_name" /></p> | |
| <p><label>First Name</label></p> | |
| <p><input type="text" value="" name="first_name" id="first_name" /></p> | |
| <p><label>Email</label></p> | |
| <p><input type="text" value="" name="email" id="email" /></p> | |
| <p><label>Username</label></p> | |
| <p><input type="text" value="" name="username" id="username" /></p> | |
| <p><label>Password</label></p> | |
| <p><input type="password" value="" name="password1" id="password1" /></p> | |
| <p><label>Password again</label></p> | |
| <p><input type="password" value="" name="password2" id="password2" /></p> | |
| <div class="alignleft"><p><?php if($sucess != "") { echo $sucess; } ?> <?php if($error!= "") { echo $error; } ?></p></div> | |
| <button type="submit" name="btnregister" class="button" >Submit</button> | |
| <input type="hidden" name="task" value="register" /> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment