-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistration.php
More file actions
49 lines (48 loc) · 1.75 KB
/
Registration.php
File metadata and controls
49 lines (48 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!--
Into this file, we create a layout for registration page.
-->
<?php
include_once('header.php');
include_once('link.php');
?>
<div id="frmRegistration">
<form class="form-horizontal" action="registration_code.php" method="POST">
<h1>User Registration</h1>
<div class="form-group">
<label class="control-label col-sm-2" for="firstname">First Name:</label>
<div class="col-sm-6">
<input type="text" name="firstname" class="form-control" id="firstname" placeholder="Enter Firstname">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="lastname">Last Name:</label>
<div class="col-sm-6">
<input type="text" name="lastname" class="form-control" id="lastname" placeholder="Enter Lastname">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="lastname">Gender:</label>
<div class="col-sm-6">
<label class="radio-inline"><input type="radio" name="gender" value="Male">Male</label>
<label class="radio-inline"><input type="radio" name="gender" value="Female">Female</label>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="email">Email:</label>
<div class="col-sm-6">
<input type="email" name="email" class="form-control" id="email" placeholder="Enter email">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="pwd">Password:</label>
<div class="col-sm-6">
<input type="password" name="password" class="form-control" id="pwd" placeholder="Enter password">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" name="create" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
</div>