-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
174 lines (146 loc) · 3.72 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>sign up page</title>
<link href="https://fonts.googleapis.com/css2?family=Lato&family=Poppins:wght@300&display=swap" rel="stylesheet">
</head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Kanit', sans-serif;
font-family: 'Poppins', sans-serif;
}
body {
background: #dfe9f5;
background-image: url(one.jpg);
background-size: cover;
backface-visibility: calc();
}
.wrapper {
width: 330px;
padding: 2rem 1rem;
margin: 120px auto;
background-color: #fff;
border-radius: 10px;
text-align: center;
box-shadow: 0 10px 10px rgb(209, 197, 197);
background-image: url(one.jpg);
background: transparent;
border: 2px solid rgba(225, 225, 225, 2);
}
h1 {
font-size: 2rem;
color: whitesmoke;
margin-bottom: 1.2rem;
}
form input {
width: 92%;
outline: none;
border: 1px solid#fff;
padding: 12px 20px;
margin-bottom: 10px;
border-radius: 20px;
background: #e4e4e4;
}
button {
font-size: 1rem;
margin-top: 1.8rem;
padding: 10px 0;
outline: none;
border: none;
width: 90%;
color: #fff;
cursor: pointer;
background: #007bff;
border-radius: 8px;
}
.anchortag{
text-decoration: none;
color: black;
}
button:hover {
background: #3c98fb;
}
input:focus {
border: 1px solid rgb(192, 192, 192);
}
.terms label {
color: 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: white;
text-decoration: none;
}
.member {
font-size: 0.8rem;
margin-top: 1.4rem;
color: white;
}
.member a {
color: rgb(0, 64, 255);
text-decoration: none;
}
body {
background-image: linear-gradient(rgba(0, 0, 50, 0.4), rgba(0, 0, 50, 0.4)), url(signinorup.jpg);
}
.return-container {
max-width: 16%;
margin-top: auto;
color: #fff;
}
.ret-btn {
margin-top: 500px 500px;
padding: 8px 20px;
background-color: #e4e4e4;
color: #131212;
border: none;
border-radius: 4px;
cursor: pointer;
}
</style>
<body>
<main>
<div class="wrapper">
<h1>Sign Up</h1>
<form action="#">
<input type="email" placeholder="Email">
<input type="text" placeholder="Name">
<input type="password" placeholder="Password">
<input type="password" placeholder="Re-Enter Password">
</form>
<div class="terms">
<input type="checkbox" id="checkbox">
<lable for="checkbox"><a href="#">I agree to these Terms and Conditions</a>
</lable>
</div>
<button>Sign up</button>
<div class="member">
Already a member? <a href="./signin.html">
Sign in here
</a>
</div>
</div>
</main>
<center>
<div class="return-container">
<button type="submit" class="ret-btn"><a href="index.html" class="anchortag">Back to Home</a></button>
</div>
</center>
</body>
</html>