-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
118 lines (97 loc) · 2.69 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
<!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>
<style>
*{
margin: 0;
padding: 0;
}
#form {
/* border: 2px solid red; */
width: 22vw;
margin: auto;
height: auto;
padding: 33px;
border-radius: 20px;
background-color: #F2F3F4;
font-family: Arial, Helvetica, sans-serif;
position: relative;
}
#form>h1 {
text-align: center;
}
form>label {
font-size: 16px;
margin: 0;
padding: 0;
}
form>input {
width: 100%;
height: 1.5rem;
margin: 0px 0px 10px 0px ;
}
input[type="submit"] {
height: 5vh;
font-size: 1.5rem;
margin-top: 10px;
cursor: pointer;
}
input[type="submit"]:hover{
background-color:grey;
color: black;
border-radius: 15px;
}
form>p>a {
font-size: 22px;
position: relative;
left: 17.6vw;
bottom: -13px;
text-decoration: none;
color: red;
}
#form>div>p{
text-align: center;
margin: 15px 0px;
}
#crossform{
font-size: 22px;
position: absolute;
top: 10px;
right: 25px;
cursor: pointer;
}
#form1{
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<div id="form1">
<form id="form">
<h1>Sign Up</h1>
<div id="crossform">
✖
</div>
<div><p>Welcome! It's quick and easy to set up an account</p></div>
<label for="">Full Name</label>
<input type="text" placeholder="Enter Your Name" id="name">
<label for="">Email</label>
<input type="email" placeholder="Enter Your Email" id="email">
<label for="">Phone No</label>
<input type="number" placeholder="Enter Your No" id="no">
<label for="">Password</label>
<input type="Password" placeholder="Enter Your Password" id="pass">
<input type="submit" value="Sign Up" id="submit">
<p><a href="login.html">Sign In</a></p>
</form>
</div>
</body>
</html>
<script src="./signup.js"></script>