-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (95 loc) · 2.93 KB
/
index.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
<!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>Sample Form</title>
<style>
:root {
font-family: sans-serif;
text-align: center;
height: 100%;
}
* {
box-sizing: border-box;
padding: 0;
line-height: 1.5;
}
footer {
background-color: #dedede;
color: #333;
font-size: 20px;
text-align: center;
width: 100%;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
.label {
font-weight: bold;
}
.wrap {
display: none;
}
</style>
</head>
<body>
<div class="content">
<header>
<h1>Mock Test registration form</h1>
</header>
<form
method="POST"
data-netlify="true"
netlify-honeypot="bot-field"
action="/pages/success.html"
>
<label for="name" class="label">Full Name with initials</label><br />
<input type="text" name="name" placeholder="Enter your Name" required />
<br />
<label for="email" class="label">E-Mail</label><br />
<input
type="email"
name="email"
placeholder="Enter your Email"
required
/><br />
<label for="department" class="label">Department</label><br />
<input type="text" name="department" required />
<br />
<label for="designation" class="label">Designation</label><br />
<input type="text" name="designation" required />
<br />
<label for="college-of-work" class="label">College of work</label><br />
<input type="text" name="college-of-work" required />
<br />
<label for="gender" class="label">Gender</label><br />
<label for="male">Male</label>
<input type="radio" name="gender" value="Male" class="male" /><br />
<label for="female">Female</label>
<input type="radio" name="gender" value="Female" class="female" />
<br />
<label for="other">Other</label>
<input type="radio" name="gender" value="Other" class="other" />
<br />
<button type="submit" class="label">Send</button>
<div class="wrap">
<label>
Do not fill this out if you are a human: <input name="bot-field" type="text" />
</label>
</div>
<br />
</form>
</div>
<footer>
<p>Find me elsewhere on the web as well:</p>
<p>
<a href="https://www.youtube.com/c/ShashiKS/">Youtube</a>
<a href="https://twitter.com/shashiksishere">Twitter</a>
<a href="https://t.me/joinchat/AyU4RtrVE-82Njc1">Telegram</a>
</p>
</footer>
</body>
</html>