-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
78 lines (63 loc) · 1.67 KB
/
signup.html
File metadata and controls
78 lines (63 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<title>
Sign Up</title>
<style>
body { background-image: url(signupbg.jpg);
background-position: center;
background-size: cover;
}
.main1 {
font-size: 50px;
}
.main {
color: white;
text-align: center;
margin-top:100px;
}
.pass {
background-color: white;
height:40px;
width:300px;
}
.ml {
background-color: white;
height:40px;
width:300px;
}
.bt {
background-color: white;
font-size: 25px;
height:40px;
}
.cb2 {
font-size: 25px;
}
.lg {
font-size: 25px;
color: white;
}
</style>
</head>
<body>
<div class="main">
<h1 class="main1"> Create An Account</h1>
<input type = "email" class = "ml" placeholder="Enter your Email">
<br>
<br>
<input type= "password" class = "pass" placeholder = "Enter your password">
<br>
<br>
<input type = "password" class = "pass" placeholder="Confirm your password">
<br>
<br>
<input type="checkbox" id="cb1" name="cb1" value="Bike">
<label for="cb1" class="cb2"> I accept all the terms and services.</label>
<p><a href = "login.html" class="lg"> Already registered, click to login!</a></p>
<br>
<br>
<input type="button" class = "bt" value= "Submit">
</div>
</body>
</html>