-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregistration.html
32 lines (32 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css" type="text/css" media="all">
</head>
<script src="js/register.js"></script>
<body>
<nav class="navbar">
<div>
<a class="navbar-brand" href="/clothingorder"><h2><span>CARTEL </span>CLOTHING</h2></a>
</div>
</nav>
<hr>
<br>
<div>
<a href="login.html" class="button">Login</a>
<a href="registration.html" class="button">Sign Up</a>
</div>
<div class="signup-div">
<h2>Sign Up</h2>
<input type="text" id="username" placeholder="Username" required><br>
<input type="password" id="password" placeholder="Password" required><br>
<input type="text" id="fname" placeholder="Firstname" required><br>
<input type="text" id="lname" placeholder="Lastname" required><br>
<input type="text" id="email" placeholder="Email Address" required><br>
<input type="text" id="mobile" placeholder="Mobile Number" required><br>
<input type="text" id="add" placeholder="Address" required><br>
<button type="submit" id="register">Sign Up</button>
</div>
</body>
</html>