-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
69 lines (67 loc) · 2.27 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
<!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>Document</title>
<style>
#box{
width: 33%;
height: 630px;
/* border: 1px solid black; */
text-align: center;
margin: auto;
margin-top: 20px;
box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
#box>h3{
color: rgb(1, 174, 139);
font-family: cursive;
font-size: 25px;
}
input{
display: flex;
height: 40px;
margin: auto;
width: 80%;
margin-bottom: 40px;
}
select{
display: flex;
height: 40px;
margin: auto;
width: 80%;
margin-bottom: 40px;
}
#submit{
display: block;
margin: auto;
font-size: 20px;
background-color: rgb(1, 174, 139);
color: aliceblue;
border: 0px;
}
</style>
</head>
<body>
<div id="box">
<h3><—Signup For goodness inside</h3>
<form id="form">
<input number="" placeholder="Phonenumber" id="phnum">
<input type="text" placeholder="Enter full name" id="fname">
<input type="password" placeholder="Enter password" id="password">
<input type="email" placeholder="Enter your Email" id="Email">
<select name="gender" id="gender" aria-placeholder="gender">
<option value="">Gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
<input type="date" id="date">
<input type="submit" value="Signup" id="submit">
</form>
</div>
</body>
</html>
<script src="signup.js"></script>