forked from NayanUnni95/Fresh_Cart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 2.04 KB
/
Copy pathindex.html
File metadata and controls
65 lines (65 loc) · 2.04 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>sign up...</title>
<link
rel="shortcut icon"
href="./images/icon/bag16x16.png"
type="image/x-icon"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script src="./main.js"></script>
<link rel="manifest" href="./manifest.json" />
<link rel="stylesheet" href="style.css" />
</head>
<body class="flex">
<form class="container flex">
<span class="back">
<i class="fa-solid fa-arrow-left-long fa-lg"></i>
</span>
<h3>create new account!</h3>
<input type="text" class="inp" placeholder="name" id="name" required />
<!-- <div class="name error flex"><h4>Empty name</h4></div> -->
<input
type="email"
class="inp"
id="email"
placeholder="email"
pattern="[A-Za-z0-9._+-]+@[A-Za-z0-9 -]+\.[a-z]{2,}"
title="must be a valid email address"
required
/>
<!-- <div class="email error flex"><h4>Invalid Email</h4></div> -->
<input
type="password"
class="inp passw"
id="pass"
placeholder="password"
pattern="[a-zA-Z0-9]{8,}"
title="Must be at least 8 characters"
required
/>
<input
type="password"
class="inp passw"
id="c_pass"
placeholder="confirm password"
pattern="[a-zA-Z0-9]{8,}"
title="Must be at least 8 characters"
required
/>
<div class="pass error flex"><h4>password doesn't match</h4></div>
<button class="signup" id="submit">sign up</button>
<a href="./src/home/home.html"><h5>not now?</h5></a>
</form>
<script src="./script.js"></script>
</body>
</html>