-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop-registration.html
89 lines (88 loc) · 5.01 KB
/
shop-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
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<title>Shop Registration</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container_og">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom sticky-top">
<a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
<svg xmlns="http://www.w3.org/2000/svg" width="35" fill="currentColor" class="bi bi-bag-check-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M10.5 3.5a2.5 2.5 0 0 0-5 0V4h5v-.5zm1 0V4H15v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4h3.5v-.5a3.5 3.5 0 1 1 7 0zm-.646 5.354a.5.5 0 0 0-.708-.708L7.5 10.793 6.354 9.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0l3-3z"/>
</svg>
<span class="fs-4 ms-2">ReadySave</span>
</a>
<ul class="nav nav-pills">
<li class="nav-item"><a href="#" class="nav-link" aria-current="page">Login Customer</a></li>
<li class="nav-item"><a href="#" class="nav-link">Register Customer</a></li>
<li class="nav-item"><a href="#" class="nav-link">Login Store</a></li>
<li class="nav-item"><a href="#" class="nav-link">Register Store</a></li>
<li class="nav-item"><a href="#" class="nav-link">TEST</a></li>
</ul>
</header>
</div>
<div class="container" style="position:absolute; top:50px; bottom:30px; left:0px; right:0px; overflow:auto;">
<div class="row align-items-center">
<div class="col-md-6">
<h2 class="text-center">Shop Registration</h2>
<form action="#" method="POST">
<div class="form-group">
<input type="text" id="shopName" name="shopName" class="form-control" required>
<label for="shopName">Shop Name</label>
</div>
<div class="form-group">
<input type="text" id="shopUsername" name="shopUsername" class="form-control" required>
<label for="shopUsername">Shop Username</label>
</div>
<div class="form-group">
<input type="password" id="shopPassword" name="shopPassword" class="form-control" required>
<label for="shopPassword">Shop Password</label>
</div>
<div class="form-group">
<input type="password" id="confirmPassword" name="confirmPassword" class="form-control" required>
<label for="confirmPassword">Confirm Password</label>
</div>
<div class="form-group">
<input type="text" id="shopAddress" name="shopAddress" class="form-control" required>
<label for="shopAddress">Shop Address</label>
</div>
<div class="form-group">
<input type="text" id="shopOwnerName" name="shopOwnerName" class="form-control" required>
<label for="shopOwnerName">Shop Owner Name</label>
</div>
<div class="form-group">
<input type="email" id="shopEmail" name="shopEmail" class="form-control" required>
<label for="shopEmail">Shop Email</label>
</div>
<div class="form-group">
<input type="tel" id="shopPhoneNumber" name="shopPhoneNumber" class="form-control" required>
<label for="shopPhoneNumber">Shop Phone Number</label>
</div>
<button type="submit" class="btn btn-primary btn-block">Register</button>
</form>
</div>
<div class="col-md-6">
<img src="images/signup-image.png" alt="Shop Image" class="img-fluid rounded">
</div>
</div>
</div>
<div class="container_og sticky-bottom" style="position:absolute; bottom:0px; height:100px; left:0px; right:0px; overflow:hidden;">
<footer class="py-3 my-4">
<ul class="nav justify-content-center border-bottom pb-3 mb-3">
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Login Customer</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Register Customer</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Login Store</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Register Store</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">TEST</a></li>
</ul>
<p class="text-center text-body-secondary">ReadySave</p>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</body>
</html>