forked from Khalid-R-Salis/-e-gona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
133 lines (126 loc) · 4.95 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!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-4">
Create an account
</h1>
<p class="text-[16px] font-body pb-2">Enter your details below</p>
<div class="mb-5">
<input
type="text" name="name"
placeholder="Name" required
class="p-2 w-64 border-b-2 border-gray-700 outline-none"
/>
</div>
<div class="mb-5">
<input
type="email" name="email"
placeholder="Email or Phone Number" required
class="p-2 w-64 border-b-2 border-gray-700 outline-none"
/>
</div>
<div class="mb-5">
<input
type="password" name="password"
placeholder="Password" required
class="p-2 w-64 border-b-2 border-gray-700 outline-none"
/>
</div>
<div>
<button class="pb-2 w-64 btn">Create Account</button>
</div>
<div class="flex">
<a href="" class="px-10 py-1 rounded-md flex gap-1 content-center items-center bg-white mt-2 text-slate-950 border-2 border-zinc-950"
>
<img src="images/Icon-Google.svg" alt="" />
<p>Sign up with Google</p>
</a>
</div>
<p class="ml-6">
Already have account?
<a class="mr-3 border-b-[2.5px] border-slate-800 pb-[2px]" href="#">log in</a>
</p>
</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>