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
54 changes: 4 additions & 50 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,52 +14,15 @@ <h1>Registration Form</h1>
<div class="panel-body">
<form action="connect.php" method="post">
<div class="form-group">
<label for="firstName">First Name</label>
<label for="username">username</label>
<input
type="text"
class="form-control"
id="firstName"
name="firstName"
id="username"
name="username"
/>
</div>
<div class="form-group">
<label for="lastName">Last Name</label>
<input
type="text"
class="form-control"
id="lastName"
name="lastName"
/>
</div>
<div class="form-group">
<label for="gender">Gender</label>
<div>
<label for="male" class="radio-inline"
><input
type="radio"
name="gender"
value="m"
id="male"
/>Male</label
>
<label for="female" class="radio-inline"
><input
type="radio"
name="gender"
value="f"
id="female"
/>Female</label
>
<label for="others" class="radio-inline"
><input
type="radio"
name="gender"
value="o"
id="others"
/>Others</label
>
</div>
</div>

<div class="form-group">
<label for="email">Email</label>
<input
Expand All @@ -78,15 +41,6 @@ <h1>Registration Form</h1>
name="password"
/>
</div>
<div class="form-group">
<label for="number">Phone Number</label>
<input
type="number"
class="form-control"
id="number"
name="number"
/>
</div>
<input type="submit" class="btn btn-primary" />
</form>
</div>
Expand Down