-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegistration.html
85 lines (81 loc) · 3.01 KB
/
Registration.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style/Reg.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="style/main.css">
<script src="Js/registration.js"></script>
</head>
<body>
<form method="POST" action="./php/register.php">
<div class="container">
<div class="row">
<div class="col-md-10 offset=md-1">
<div class="row">
<div class="col-md-5 register-left">
<img src="images/bike.jpg">
<h3>SETHMITH Gas Delivery</h3>
<p>Follow Us</p>
<button type="button" class="btn btn-primary">About Us</button>
</div>
<div class="col-md-7 register-right">
<h2>Registration Here </h2>
<div class="register-form">
<!--<div class="form-group">
<b>Title</b>
<select name="title" id="name">
<option value="mr">Mr</option>
<option value="mrs">Mrs</option>
<option value="miss">Miss</option>
<option value="dr">Dr</option>
</select>
</div>-->
<div class="form-group">
<b>Name</b> <br />
First Name<input name="fname" type="text" class="form-control" placeholder="eg:Emma"
required>
</div>
<div class="form-group">
Last Name<input name="lname" type="text" class="form-control" placeholder="eg:Watson" required>
</div>
<div class="form-group">
<b>Contact Number</b> <br>
Mobile :<input name="contact_no" type="number" class="form-control" required>
<!--<br> Fixed Line: <input type="text" class="form-control" required>-->
</div>
<div class="form-group">
NIC Number<input name="nic" type="text" maxlength="12" class="form-control" required>
<!--<br> Fixed Line: <input type="text" class="form-control" required>-->
</div>
<div class="form-group">
<b>Address</b> <br>
No <input name="no" type="text" class="form-control" required>
Road <input name="road" type="text" class="form-control" required>
City <input name="city" type="text" class="form-control" required>
</div>
<div class="form-group">
<b>Email</b> <input name="email" type="email" class="form-control"
placeholder="eg:[email protected]" required>
</div>
<div class="form-group">
Password <input name="password" type="password" class="form-control" required>
</div>
<div class="form-group">
Confirm Password <input name="password_verify" type="password" class="form-control"
required>
</div>
<div class="form-group">
<input required type="checkbox"> <label> I agree to the terms and conditions
</label>
</div>
<button type="submit" class="btn btn-primary">Register</button>
<a href="./login.php" class="btn btn-primary-1">Back Login</a>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</body>
</html>