-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign.html
68 lines (54 loc) · 3.23 KB
/
sign.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flicker-Signup</title>
<link rel="stylesheet" href="output.css">
<link rel="icon" type="img/png" href="assests/flickr (4).png">
</head>
<body style="background-image: url(https://identity.flickr.com/img/033120190455-by-Henry.2edde7a9.jpg);">
<header class="bg-black " style="height: 4rem;color: white;">
<div class="flex justify-start" style="padding-left: 3rem;">
<button onclick="location.href = 'index.html';"><img style="padding-left: 3rem; height:4rem" id="log_icon"
src="assests/flickr (1).png" alt="logo"></button>
</div>
</header>
<section class="grid grid-cols-2 gap-4 place-content-center text-center" style="height: 39.5rem;">
<form id="sign_box" action="Home.html">
<img id="sign_img" src="assests/flickr (1).png" alt="logo" style="margin-left: auto;margin-right: auto;height: 2rem; width: 2rem;">
<p class="text-center" style="font-size: 20px;">Sign up for Flickr</p>
<input class="outline-blue-500 h-12 rounded-sm px-3 my-2" type="text" placeholder="First Name"
style="border-width: 1px; border-color:black; padding-right: 6rem;" required>
<input class="outline-blue-500 h-12 rounded-sm px-3 my-2" type="text" placeholder="Last Name"
style="border-width: 1px; border-color:black; padding-right: 6rem;" required>
<input class="outline-blue-500 h-12 rounded-sm px-3 my-2" type="text" placeholder="Age"
style="border-width: 1px; border-color:black; padding-right: 6rem;" required>
<input class="outline-blue-500 h-12 rounded-sm px-3 my-2" type="email" placeholder="Email address"
style="border-width: 1px; border-color:black; padding-right: 6rem;" required>
<input class="outline-blue-500 h-12 rounded-sm px-3 my-2" type="password" placeholder="Password"
style="border-width: 1px; border-color:black; padding-right: 6rem;" required>
<button class="bg-blue-500 my-2 text-white rounded-sm px-3 py-1 hover:bg-blue-500"
style="height: 2.5rem;font-weight: 550;">Sign up</button>
<p class="text-center text-sm" style="color: grey;">By signing up, you agree with Flickr's Terms
of<br>Services and Privacy Policy.</p><br>
<hr class="my-1"><br>
<span class="bottom-10 text-sm text-center">Already a Flickr member? <button
onclick="location.href = 'login.html';" class="cursor-pointer hover:underline">
Log in here.</button></span>
</form>
<div class="text-white flex justify-between" style="margin-top: 4px;">
<div>
<a href="#">English</a>
</div>
<div>
<a style="padding-left: 10px;" href="#">Help</a>
<a style="padding-left: 10px;" href="#">Privacy</a>
<a style="padding-left: 10px;" href="#">Terms</a>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>