-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
75 lines (67 loc) · 2.86 KB
/
register.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
<!DOCTYPE html>
<html>
<head>
<title>Registration Page</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
</head>
<body>
<div class="container bg-light mt-4">
<label>Register Here:</label>
<form>
<div class="row mb-4">
<div class="col-6">
First Name<br>
<input type="text" class="w-100 form-control ">
</div>
<div class="col-6">
Last Name<br>
<input type="text" class="w-100 form-control ">
</div>
</div>
<div class="row mb-4">
<div class="col-12">
Username:<br>
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text">@</div>
</div>
<input type="text" class="form-control" id="Username" placeholder="Username">
</div>
</div>
</div>
<div class="row mb-4">
<div class="col-12">
Email<br>
<input type="text" class="form-control" id="Email" placeholder="you@example.com">
</div>
</div>
<div class="row mb-4">
<div class="col-12">
Password<br>
<input type="password" class="form-control" id="password" placeholder="Enter password(6 or more characters)">
</div>
</div>
<div class="row mb-4">
<div class="col-6">
Country<br>
<select class="w-100 form-control " id="country">
<option value="India">India</option>
<option value="USA">USA</option>
<option value="Japan">Japan</option>
<option value="Australia">Australia</option>
</select>
</div>
<div class="col-6">
Zip<br>
<input type="number" class="w-100 form-control ">
</div>
<br>
</div>
<div class="row offset-5 w-50">
<a href="login.html" class="btn btn-primary">Register</a>
</div>
<br>
</form>
</div>
</body>
</html>