-
Notifications
You must be signed in to change notification settings - Fork 1
/
SignUp_Page.html
46 lines (45 loc) · 3.49 KB
/
SignUp_Page.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
<!doctype html>
<html>
<head>
<title>Wira Ganteng Sedunia</title>
<meta name="description" content="Our first page">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/css/output.css">
<script src="./main.js"></script>
</head>
<body>
<div class="min-h-screen flex flex-col bg-white">
<div class="h-screen justify-center flex-col items-center gap-6 inline-flex">
<div class="flex-col justify-start items-center gap-1 flex">
<div class="text-center text-black text-2xl font-semibold font-Inter leading-9">Create an account</div>
<div class="text-center text-black text-base font-normal font-Inter leading-normal">Enter your email to sign up for this app</div>
</div>
<div class="flex-col justify-start items-start gap-4 flex">
<input class="w-[400px] h-10 px-4 py-2 bg-white rounded-lg border border-neutral-200 justify-start items-center gap-4 inline-flex grow shrink basis-0 text-zinc-500 text-xl font-medium font-Inter leading-[30px]" placeholder="[email protected]" required/>
<button class="w-[400px] h-10 px-4 bg-black rounded-lg justify-center items-center gap-2 inline-flex">
<div class="text-white text-base font-medium font-Inter leading-normal">Sign up with email</div>
</button>
</div>
<div class="self-stretch justify-center items-center gap-2 inline-flex">
<div class="grow shrink basis-0 h-px bg-neutral-200"></div>
<div class="text-center text-zinc-500 text-base font-normal font-Inter leading-normal">or continue with</div>
<div class="grow shrink basis-0 h-px bg-neutral-200"></div>
</div>
<button class="pl-3.5 pr-[172.50px] py-2 bg-zinc-100 rounded-lg justify-start items-center gap-[138.50px] inline-flex">
<div class="w-5 h-5 relative flex-col justify-start items-start flex"></div>
<div class="text-black text-base font-medium font-Inter leading-normal">Google</div>
</button>
<div class="self-stretch text-center"><span style="text-zinc-500 text-base font-normal font-Inter leading-normal">By clicking continue, you agree to our </span><span style="text-black text-base font-normal font-Inter leading-normal">Terms of Service</span><span style="text-zinc-500 text-base font-normal font-Inter leading-normal"> and </span><span style="text-black text-base font-normal font-Inter leading-normal">Privacy Policy</span></div>
</div>
<div class="absolute left-4 top-4 h-16 w-16 text-black text-xl font-semibold font-Inter leading-[30px]">Register</div>
<div class="absolute top-0 right-4 h-16 w-16 justify-end items-center gap-10 inline-flex">
<button class="text-black text-xl font-medium font-mono leading-[30px]">Home</button>
<button class="text-black text-xl font-medium font-mono leading-[30px]">Menu</button>
<button class="text-black text-xl font-medium font-mono leading-[20px] whitespace-nowrap">About US</button>
<button class="px-6 py-3.5 bg-black rounded-lg shadow justify-center items-center gap-2 flex">
<div class="text-orange-50 text-base font-medium font-mono leading-normal">Login</div>
</button>
</div>
</div>
</body>
</html>