forked from Khalid-R-Salis/-e-gona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresetpassword.html
111 lines (102 loc) · 4.07 KB
/
resetpassword.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Egona</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="dict/styles.css" />
</head>
<body>
<div class="sign-container">
<div class="sign-card">
<div class="">
<img class="md:h-500" src="images/Side Image-login.png" alt="image" />
</div>
<div class="flex contents-center items-center">
<form action="get">
<h1 class="font-inter text-[25px] font-body pb-1">
Reset Password
</h1>
<p class="text-[16px] font-body pb-2">Enter your Email below to reset password</p>
<div class="mb-5">
<input
type="email"
placeholder="Email" required
class="p-2 w-64 border-b-2 border-gray-700 outline-none"
/>
</div>
<div class="flex flex-col">
<button class="w-20 mb-2 btn">Reset</button>
<div class="text-green-600">Check your email for reset link</div>
</div>
</form>
</div>
</div>
</div>
<footer class="bg-footer_color h-80 flex items-center content-center">
<div class="text-white font-body w-full flex justify-evenly">
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Exclusive</h1>
<h2 class="pb-3 text-[15px]">Subscribe</h2>
<p class="pb-3 text-[13px]">Get 10% off your first order</p>
<div
class="flex items-center content-center gap-5 border-2 border-stone-50 rounded-md py-1 px-2"
>
<p class="text-[13px] text-slate-200">Enter your email</p>
<img src="images/icon-send.svg" alt="" />
</div>
</div>
<div class="w-60">
<h1 class="pb-3 font-medium text-[20px]">Support</h1>
<h2 class="pb-3 text-[15px]">
111 Teen Business Compulex, Nhub Nigeria, Jos, Plateau State.
</h2>
<p class="pb-3 text-[13px]">[email protected]</p>
<p class="pb-3 text-[13px]">+234 8085499803</p>
</div>
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Account</h1>
<h2 class="pb-3 text-[15px]">My Account</h2>
<h2 class="pb-3 text-[15px]">Login / Register</h2>
<h2 class="pb-3 text-[15px]">Cart</h2>
<h2 class="pb-3 text-[15px]">Wishlist</h2>
<h2 class="pb-3 text-[15px]">Shop</h2>
</div>
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Quick Link</h1>
<h2 class="pb-3 text-[15px]">Privacy Policy</h2>
<h2 class="pb-3 text-[15px]">Terms Of Use</h2>
<h2 class="pb-3 text-[15px]">FAQ</h2>
<h2 class="pb-3 text-[15px]">Contact</h2>
</div>
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Download App</h1>
<h2 class="pb-3 text-[15px]">Save 1,000 naira with App New User Only</h2>
<div class="pb-3 flex gap-3 justify-start items-center">
<div>
<img src="images/Qrcode 1.png" alt="" />
</div>
<div>
<img class="mb-2" src="images/googleplay.png" alt="" />
<img src="images/appplay.png" alt="" />
</div>
</div>
<div class="flex gap-5">
<img src="images/facebbok.svg" alt="" />
<img src="images/twitter.svg" alt="" />
<img src="images/insta.svg" alt="" />
<img src="images/linkin.svg" alt="" />
</div>
</div>
</div>
</footer>
<p class="flex justify-center items-center text-white py-3 bg-footer_color border-t-2 border-white ">
© Copyright e-gona 2022. All right reserved
</p>
</body>
</html>