-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.html
43 lines (40 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="assets/images/icon.png" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<title>Tiny Toes | Sign Up</title>
<link rel="stylesheet" href="/styles/main.css">
<link rel="stylesheet" href="/styles/signup.css">
<script src="scripts/signup.js" type="module" defer></script>
</head>
<body>
<header>
<!-- Header & Navigation -->
</header>
<main>
<div id="Main">
<a href="./index.html"><img src="./assets/images/logo.png" alt="" width="270px"></a>
<h2 style="font-family:Calibri;color: rgb(75, 72, 72);margin-bottom: -1vh;">Register</h2>
<label style="margin-bottom: -25px;font-weight: 600;font-family:Calibri;color:rgb(75, 72, 72);">Name</label>
<input type="text" id="name" class="register" />
<label style="margin-bottom: -25px;font-weight: 600;font-family:Calibri;color:rgb(75, 72, 72);">Email</label>
<input type="email" id="email" class="register" />
<label style="margin-bottom: -25px;font-weight: 600;font-family:Calibri;color:rgb(75, 72, 72);">Mobile No.</label>
<input type="number" id="mobile" class="register" />
<label style="margin-bottom: -25px;font-weight: 600;font-family:Calibri;color:rgb(75, 72, 72);">Password</label>
<input type="password" class="register" id="rowpswrd" />
<label style="margin-bottom: -25px;font-weight: 600;font-family:Calibri;color:rgb(75, 72, 72);"> Confirm Password</label>
<input type="password" id="password" class="register" />
<button id="registerBtn">CONTINUE</button>
<p style="font-family: calibri;margin:-2vh 0px 0px 1vw;color: rgb(58, 58, 241);font-weight: 800;">Already Registered User? <a href="./signin.html" style="color:rgb(58, 58, 241);">LogIn Here </a></p>
</div>
</main>
<footer>
<!-- Footer -->
</footer>
</body>
</html>