Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion regform.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
<form id="registration" action="login.html">
<label>Firstname:</label>
<input type="text" name="fname" id="button" maxlength="20" placeholder="Enter your Firstname"required><span class="glyphicon glyphicon-user"></span><br><br>


<label>Middlename:</label>
<input type="text" name="lname" id="button" maxlength="20" placeholder="Enter your Middlename"required><span class="glyphicon glyphicon-user"></span><br><br>

<label>Lastname:</label>
<input type="text" name="lname" id="button" maxlength="20" placeholder="Enter your Lastname"required><span class="glyphicon glyphicon-user"></span><br><br>
Expand All @@ -20,6 +24,13 @@
<label>E-mail ID:</label>
<input type="email" name="email" id="button" maxlength="35" placeholder="Enter your E-mail id"required><span class="glyphicon glyphicon-envelope"></span><br><br>

<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label> <br><br>

<label>Password:</label>
<input type="password" name="pwd" id="button" maxlength="10" placeholder="Enter your Password"required><span class="glyphicon glyphicon-lock"></span><br><br>
<input type="submit" value="Register" id="but2">
Expand All @@ -31,4 +42,4 @@