Skip to content

Instantly share code, notes, and snippets.

@MrJSdev
Last active March 26, 2017 19:25
Show Gist options
  • Select an option

  • Save MrJSdev/55edf83f9b0efb97ebf49e4361f4a717 to your computer and use it in GitHub Desktop.

Select an option

Save MrJSdev/55edf83f9b0efb97ebf49e4361f4a717 to your computer and use it in GitHub Desktop.
HTML Code of Registration Form
<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