forked from sangalgovind/Blogging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
122 lines (109 loc) · 3.79 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
<!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>Sign Up</title>
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat&family=Dancing+Script&family=Lobster&family=Poppins&family=Raleway:wght@100&family=Ubuntu:wght@300&display=swap" rel="stylesheet">
<style>
body {
background-color: black;
color: white;
}
#email {
border: 2px solid black;
width: 30%;
padding: 12px 20px;
margin-left: 119px;
box-sizing: border-box;
}
#pass {
border: 2px solid black;
width: 30%;
padding: 12px 20px;
margin-left: 94px;
box-sizing: border-box;
}
#conpass {
border: 2px solid black;
width: 30%;
padding: 12px 20px;
margin-left: 32px;
box-sizing: border-box;
}
.cancelbtn {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: bold;
background: linear-gradient(135deg, #042033, #c889e5);
padding: 1.2rem 2.5rem;
border: none;
cursor: pointer;
font-size: 19px;
border-radius: 31px;
color: #cecece;
margin-left: 37vw;
margin-top: 3vh;
}
.signupbtn {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: bold;
background: linear-gradient(135deg, #042033, #c889e5);
padding: 1.2rem 2.5rem;
border: none;
cursor: pointer;
font-size: 19px;
border-radius: 31px;
color: #cecece;
margin-left: 3vw;
margin-top: 3vh;
}
.withoutbtn{
margin-left: 520px;
}
.headings{
margin-left: 622px;
}
.container{
margin-top: 164px;
}
</style>
</head>
<body>
<div class="container">
<div class="headings">
<h1>Sign Up</h1>
<p>Please fill in this form to create an account.</p>
</div>
<form action="#">
<div class="withoutbtn">
<div class="qaemail">
<label for="email"><b>Email</b></label>
<input type="text" id="email" placeholder="Enter Email" name="email" required>
</div>
<br>
<div class="qapass">
<label for="psw"><b>Password</b></label>
<input type="password" id="pass" placeholder="Enter Password" name="psw" required>
</div>
<br>
<div class="qaconpass">
<label for="psw-repeat"><b>Confirm Password</b></label>
<input type="password" id="conpass" placeholder="Confirm Password" name="psw-confirm" required>
</div>
<br>
<div class="check">
<label>
<input type="checkbox" id="remember" checked="checked" name="remember" style="margin-bottom:15px"> Remember
me
</label>
</div>
</div>
<div class="but">
<button type="button" class="cancelbtn">Cancel</button>
<button type="submit" class="signupbtn">Sign Up</button>
</div>
</form>
</div>
</body>
</html>