-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreg.html
113 lines (88 loc) · 2.67 KB
/
reg.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
<!DOCTYPE html>
<html>
<head>
<style>
* {
box-sizing: border-box
}
input[type=text],
input[type=password] {
width: 25%;
padding: 20px;
margin: 5px 0 20px 0;
display: inline-block;
border: none;
background: #eee;
}
input[type=text]:focus,
input[type=password]:focus {
background-color: #ccc;
outline: none;
}
hr {
border: 1px solid #3186df;
margin-bottom: 25px;
opacity: 0.6;
}
button {
background-color: #3186ff;
color: white;
padding: 16px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 50%;
opacity: 0.85;
}
button:hover {
opacity: 1;
}
.cancelbtn {
background-color: #f45356;
}
.cancelbtn,
.signupbtn {
float: left;
width: 50%;
}
.container {
padding: 16px;
background-color: #f8ffff
}
</style>
</head>
<body style="background-color: #f8ffff">
<form style="border:1px solid #f8ffff">
<div class="container">
<h1>Sign Up Here</h1>
<hr>
<label for="f-name"><b>First Name:</b></label>
<input type="text" placeholder="Enter Your First Name:" name="f-name" required>
<label for="l-name"><b>Last Name:</b></label>
<input type="text" placeholder="Enter Your Last Name:" name="l-name" required>
<hr>
<label for="email"><b>Email:</b></label>
<input type="text" placeholder="Enter Your Email:" name="email" required>
<label for="email-rep"><b>Confirm Email:</b></label>
<input type="text" placeholder="Confirm Your Email:" name="email-rep" required>
<hr>
<label for="pwd"><b>Password:</b></label>
<input type="password" placeholder="Enter Your Password:" name="pwd" required>
<label for="pwd-rep"><b>Confirm Password:</b></label>
<input type="password" placeholder="Confirm Your Password:" name="pwd-rep" required>
<hr>
<label>
<input type="checkbox" name="sus" style="margin-bottom:15px"> I am Turing Complete
</label>
<label>
<input type="checkbox" checked="checked" name="remember" style="margin-bottom:15px"> Forget me
</label>
<p>By creating an account you agree to let me <a href="index.html" style="color:dodgerblue">Pass This Course</a>.</p>
<div>
<button type="button" class="cancelbtn">Cancel</button>
<button type="submit" class="signupbtn">Sign Up</button>
</div>
</div>
</form>
</body>
</html>