-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
83 lines (77 loc) · 2.1 KB
/
forms.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
<!doctype html>
<html lang="en">
<head>
<style>
form{
background-color: wheat;
text-align: center;
font-family: monospace;
border: double gold ;
padding: 10px;
}
form:hover{
background-color: white;
}
form input{
background-color: dimgrey;
flex: auto;
text-align: center;
}
form input:hover{
background-color: white;
}
form label{
}
.image{
text-align: left;
background-color: wheat;
}
.image:hover{
background-color: white;
}
</style>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Forms</title>
</head>
<body>
<!--Input Form-->
<form action="">
<div class="image">
<img src="static/images/logo 2.png" height="225" width="225"/>
</div>
<label for="fname">First Name</label>
<br><br>
<input type="text" id="fname" name="fname" placeholder="First Name">
<br><br>
<label for="lname" >Last name</label>
<br><br>
<input type="text" id="lname" name="lname" placeholder="Last Name">
<br><br>
<label for="email">Email</label>
<br><br>
<input type="email" name="email" id="email" placeholder="email">
<br><br>
<label for="dob"> Date Of Birth</label>
<br><br>
<input type="date" name="dob" id="dob" placeholder="Date Of Birth">
<br><br>
<label for="password">Password</label>
<br><br>
<input type="password" name="password" id="password" placeholder="Password">
<br><br>
<label for="male">male</label>
<input type="radio" id="male" name="gender">
<br><br>
<label for="female">female</label>
<input type="radio" id="female" name="gender">
<br><br>
<div id="submit">
<input type="submit" value="Register Here!!!">
<br><br>
</div>
</form>
</body>
</html>