-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSign-up.html
More file actions
125 lines (110 loc) · 3.12 KB
/
Sign-up.html
File metadata and controls
125 lines (110 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>welcome to sign-up page</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
background-image: linear-gradient(rgb(0, 0, 0, 0.5),rgb(0, 0, 0, 0.5)), url(dawid-zawila--G3rw6Y02D0-unsplash.jpg);
background-attachment: fixed;
background-size: cover;
background-position: center;
width: 100%;
height: 100vh;
}
.container {
width: 330px;
padding: 2rem 1rem;
margin: 50px auto;
border-radius: 10px;
text-align: center;
background-color: lightblue;
box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 2rem;
color: black;
margin-top: 1.2rem;
margin-bottom: 1.2rem;
}
form input {
width: 92%;
outline: none;
border: 1px solid white;
padding: 12px 20px;
margin-bottom: 10px;
border-radius: 20px;
background: white;
}
button {
font-size: 1rem;
margin-top: 1.8rem;
padding: 10px 0;
outline: none;
border: none;
width: 90%;
color: white;
cursor: pointer;
background: rgb(17, 107, 143);
}
button:hover {
background: rgba(17, 107, 143, 0.877);
}
input:focus {
border: 1px solid white;
}
.terms {
margin-top: 0.2rem;
}
.terms input{
height: 1em;
width: 1em;
vertical-align: middle;
cursor: pointer;
}
.terms label {
font-size: 0.7rem;
}
.terms a {
color: rgb(17, 107, 143);
text-decoration: none;
}
.member {
font-size: 0.8rem;
margin-top: 1.4rem;
color: grey;
}
.member a {
color: rgb(17, 107, 143);
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<h1>sign-up</h1>
<form action="">
<input type="text" placeholder="First name">
<input type="text" placeholder="Last name">
<input type="text" placeholder="username">
<input type="password" placeholder="password">
<input type="password" placeholder="re-Enter"><br>
</form>
<div class="terms">
<input type="checkbox" id="checkbox">
<label for="checkbox">I agree to these <a href="">terms & condition</a></label>
</div>
<div>
<button>Sign Up</button>
<div class="member">Already a member? <a href="log-in.html">Log in</a></div>
</div>
</div>
</body>
</html>