-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
222 lines (212 loc) · 6.27 KB
/
index.html
File metadata and controls
222 lines (212 loc) · 6.27 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Starbucks Signup Page</title>
<link
href="https://unpkg.com/tailwindcss/dist/tailwind.min.css"
rel="stylesheet"
/>
<style>
@import url("https://fonts.googleapis.com/css?family=Karla:400,700&display=swap");
.font-family-karla {
font-family: karla;
}
</style>
</head>
<body class="bg-white font-family-karla h-screen">
<div class="w-full flex flex-wrap">
<div class="w-full md:w-1/2 flex flex-col">
<div
class="flex justify-center md:justify-start pt-12 md:pl-12 md:-mb-12"
>
<a href="#" alt="Logo">
<img
src="https://en.pimg.jp/058/104/879/1/58104879.jpg"
alt="coffee"
class="h-24 w-28 object-cover object-cover"
/>
</a>
</div>
<div
class="
flex flex-col
justify-center
md:justify-start
my-auto
pt-8
md:pt-0
px-8
md:px-24
lg:px-32
"
>
<p class="text-center text-3xl">SignUp</p>
<form
class="flex flex-col pt-3 md:pt-8"
onsubmit="event.preventDefault();"
>
<div class="flex flex-col pt-4">
<label for="name" class="text-lg">Name</label>
<input
type="text"
id="name"
placeholder="John Smith"
class="
shadow
appearance-none
border
rounded
w-full
py-2
px-3
text-gray-700
mt-1
leading-tight
focus:outline-none focus:shadow-outline
"
/>
</div>
<div class="flex flex-col pt-4">
<label for="email" class="text-lg">Email</label>
<input
type="email"
id="email"
placeholder="your@email.com"
class="
shadow
appearance-none
border
rounded
w-full
py-2
px-3
text-gray-700
mt-1
leading-tight
focus:outline-none focus:shadow-outline
"
/>
</div>
<div class="flex flex-col pt-4">
<label for="password" class="text-lg">Password</label>
<input
type="password"
id="password"
placeholder="Password"
class="
shadow
appearance-none
border
rounded
w-full
py-2
px-3
text-gray-700
mt-1
leading-tight
focus:outline-none focus:shadow-outline
"
/>
</div>
<div class="flex flex-col pt-4">
<label for="confirm-password" class="text-lg"
>Confirm Password</label
>
<input
type="password"
id="confirm-password"
placeholder="Password"
class="
shadow
appearance-none
border
rounded
w-full
py-2
px-3
text-gray-700
mt-1
leading-tight
focus:outline-none focus:shadow-outline
"
/>
</div>
<div class="flex flex-col pt-4">
<label for="Gender" class="text-lg">Gender</label>
<div class="flex flex-row items-center justify-between">
<div>
<input type="radio" id="MALE" name="Gender" value="MALE" checked aria-checked="checked"/>
<label for="html">MALE</label><br />
</div>
<div>
<input
type="radio"
id="FEMALE"
name="Gender"
value="FEMALE"
/>
<label for="FEMALE">FEMALE</label><br />
</div>
<div>
<input type="radio" id="OTHER" name="Gender" value="OTHER" />
<label for="OTHER">OTHER</label>
</div>
</div>
</div>
<div class="flex flex-col pt-4">
<label for="mobile-number" class="text-lg">Mobile Number</label>
<input
type="text"
id="mobile-number"
placeholder="Mobile Number"
class="
shadow
appearance-none
border
rounded
w-full
py-2
px-3
text-gray-700
mt-1
leading-tight
focus:outline-none focus:shadow-outline
"
/>
</div>
<input
type="submit"
value="Register"
class="
bg-black
text-white
font-bold
text-lg
hover:bg-gray-700
p-2
mt-8
"
/>
</form>
<div class="text-center pt-12 pb-12">
<p>
Already have an account?
<a href="login.html" class="underline font-semibold"
>Log in here.</a
>
</p>
</div>
</div>
</div>
<div class="w-1/2 shadow-2xl fixed left-1/2">
<img
class="object-cover w-full h-screen hidden md:block"
src="https://source.unsplash.com/IXUM4cJynP0"
alt="Background"
/>
</div>
</div>
</body>
</html>