-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenew.html
75 lines (62 loc) · 3.52 KB
/
renew.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
<!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>Renewal Application</h1>
<p>Please fill in this form to Renwe your bus pass. <br>
After applying do pay at the account section to get it renewed </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="Expired date"><b>Expiry Date</b></label>
<input type="date" placeholder="Expired Date" name="Expired date" required>
<br>
<br>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" 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>