-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
40 lines (39 loc) · 2 KB
/
signup.html
File metadata and controls
40 lines (39 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign In</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/js/bootstrap.bundle.min.js" integrity="sha384-ndDqU0Gzau9qJ1lfW4pNLlhNTkCfHzAVBReH9diLvGRem5+R9g2FzA8ZGN954O5Q" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="signin.css">
</head>
<body class="vh-100 d-flex align-items-center">
<div class="signin container border shadow bg-body-tertiary rounded">
<div class="row h-100">
<div class="image col-lg-6 d-none d-lg-block">
<img class="w-100" src="./images/signin-img.png" alt="No image found">
</div>
<div class="card border col-12 col-lg-6 px-5 py-3" style="height: 100%;">
<h2 class="mt-4">Shoply</h2>
<h1 class="fw-semibold">Sign up</h1>
<form action="otp-verification.html">
<div class="my-3">
<label for="email">Email</label>
<input type="email" required>
<label for="password">Password</label>
<input type="password" required>
<label for="confirm-pass">Confirm Password</label>
<input type="password">
</div>
<div class="text-center">
<button type="submit" class="btn rounded-5 px-4 my-3">SIGN UP ⇀</button>
<p>Already have an account ? <a href="./index.html">Sign in</a></p>
</div>
</form>
</div>
</div>
</div>
</body>
</html>