-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
68 lines (57 loc) · 2.58 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SergeMart - Fashion Store</title>
<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap" rel="stylesheet">
</head>
<body class="bg-primary">
<div class="container">
<div class="text-center py-5 text-light">
<h2 class="fw-bold">SergeMart</h2>
<h4>Sign Up</h4>
</div>
<div class="row justify-content-center">
<div class="col-8 rounded shadow py-4 px-5 bg-light">
<h5 class="fw-bold text-center">Register an Account</h5>
<form action="">
<div class="row">
<div class="col py-2 form-group">
<label>First Name</label>
<input type="text" class="form-control" placeholder="First Name">
</div>
<div class="col py-2 form-group">
<label>Last Name</label>
<input type="text" class="form-control" placeholder="Last Name">
</div>
</div>
<div class="row">
<div class="col py-2 form-group">
<label>Email</label>
<input type="email" class="form-control" placeholder="e-mail">
</div>
</div>
<div class="row">
<div class="col py-2 form-group">
<label>Password</label>
<input type="password" class="form-control" placeholder="Password">
</div>
<div class="col py-2 form-group">
<label>Confirm Password</label>
<input type="password" class="form-control" placeholder="Confirm Password">
</div>
</div>
<button type="submit" class="btn btn-primary my-2">Sign Up</button>
</form>
<div class="text-center">
<p class="m-0 p-0">Already have an Account?</p>
<a href="./login.html" class="btn btn-outline-primary">Log In Here</a>
</div>
</div>
</div>
</div>
<script src="./js/bootstrap.min.js"></script>
</body>
</html>