-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApply.html
78 lines (62 loc) · 3.69 KB
/
Apply.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style1.css">
</head>
<title>Apply.com</title>
<body>
<form action="submit.html" style="border:1px solid #ccc">
<div class="container">
<h1>Apply</h1>
<p>Please fill in this form to apply for a bus pass.
If your form is accepted you can use these credentials to login into this page</p>
<hr>
<label for="First name"><b>First Name</b></label>
<input type="text" placeholder="Enter First name" name="First name" required>
<label for="Middle name"><b>Middle Name</b></label>
<input type="text" placeholder="Enter Middle name" name="Middle Name">
<label for="Lat Name"><b>Last Name</b></label>
<input type="text" placeholder="Enter Last Name" name="Last name" required>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required>
<label for="Roll Number/ College ID"><b>College Id</b></label>
<input type="text" placeholder="Enter ID" name="ID" required>
<label for="Gender"><b>Gender</b></label>
<div class="gender">
<form>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label>
</form>
</div>
<label for="Type"><b>Travel CARD/PASS Type</b></label>
<div class="Type">
<form>
<input type="radio" id="Exclusive" name="Type" value="Exclusive">
<label for="Exclusive">Exclusive</label><br>
<input type="radio" id="General" name="Type" value="General">
<label for="General">General</label><br>
</form>
</div>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<label for="psw-repeat"><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="psw-repeat" required>
<label for="Upload"><b>Bonafide Certificate</b></label>
Select a file: <input type="file" id="myFile" name="usr_file" required>
<label>
<input type="checkbox" checked="checked" name="Check" style="margin-bottom:15px"> By Clicking this box you agree that provided details are true to your knowledge.
</label>
<p>By creating an account you agree to our <a href="#" style="color:dodgerblue">Terms & Privacy</a>.</p>
<div class="clearfix">
<button type="button" class="cancelbtn">Cancel</button>
<button type="submit" class="signupbtn">Apply</button>
If your application is accepted you will be notified through the provided mail.
</div>
</div>
</form>
</body>
</html>