-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (66 loc) · 2.48 KB
/
index.html
File metadata and controls
71 lines (66 loc) · 2.48 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Signup Page</title>
</head>
<body>
<nav class="navbar">
<div class="container">
<a href="" class="logo">logo</a>
<ul>
<li><a href="">Sign-up</a></li>
<li><a href="">Login</a></li>
</ul>
</div>
</nav>
<section id="msg">
</section>
<section class="container" id="sign-up">
<form id="signup-form">
<h1 class="form-header">Sign Up</h1>
<div class="form-group">
<label for="fName" class="mandatory">First Name : </label>
<input type="text" id="fName" class="form-control" />
<p class="error"><small></small></p>
</div>
<div class="form-group">
<label for="fName" class="mandatory">Last Name : </label>
<input type="text" id="lName" class="form-control" />
<p class="error"><small></small></p>
</div>
<div class="form-group">
<label for="fName">Other Names : </label>
<input type="text" id="OName" class="form-control" />
<p class="error"><small></small></p>
</div>
<div class="form-group">
<label for="phone" class="mandatory">Phone Number: </label>
<input type="text" id="phone" class="form-control" />
<p class="error"><small></small></p>
</div>
<div class="form-group">
<label for="email" class="mandatory">Email: </label>
<input type="text" id="email" class="form-control" />
<p class="error"><small></small></p>
</div>
<div class="form-group">
<label for="password" class="mandatory">Password: </label>
<input type="password" id="password" class="form-control" />
<p class="error"><small></small></p>
</div>
<div class="form-group">
<label for="password" class="mandatory">Confirm Password: </label>
<input type="password" id="password2" class="form-control" />
<p class="error"><small></small></p>
</div>
<div class="action">
<button type="submit" id="submit-btn">Sign-Up</button> Or <a href="">Login</a>
</div>
</form>
</section>
<script src="sign-up.js"></script>
</body>
</html>