-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·117 lines (93 loc) · 4.86 KB
/
index.html
File metadata and controls
executable file
·117 lines (93 loc) · 4.86 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<title>Sports Ground Booking Portal</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/ground_book.css">
</head>
<body>
<div class=col-md-6>
<img src="images/iitg_logo.gif" alt="logo" class="logo">
<h1 class="title">Indian Institute of Technology Guwahati<br><span style="color:orange">Sports Board</span></h1>
</div><br>
<div id="fill">
<h2 class="titl">Sports Ground Online Booking Form</h2><br>
<div class="jumbotron" id="ground_form">
<form onsubmit="createTable();" id="theform">
<h3>Please fill up the following details</h3><br>
<div class="row">
<label for="First_Name" class="col-2">First Name:</label>
<!-- <div class="input" > -->
<input type="text" name='First_Name' title="Your first name" alt="Hover text" class="col-4" required>
<!-- <span class="tooltip">Info</span> -->
<!-- </div> -->
</div>
<div class="row">
<label for="Last_Name" class="col-2">Last Name:</label>
<input type="text" name='Last_Name' title="Your last name" alt="Hover text" class="col-4" required>
</div>
<div class="row">
<label for="Email" class="col-2">Webmail:</label>
<input type="Email" name='Email' title="your webmail-id" alt="Hover text" class="col-4" required>
</div>
<div class="row">
<label for="Rollno" class="col-2">Roll Number:</label>
<input type="number" name='Rollno' title="Your Roll no." alt="Hover text" class="col-4" required>
</div>
<div class="row">
<label for="dept" class="col-2">Department:</label>
<select name='Department' title="Your department" alt="Hover text" class="col-4">
<option value="bsbe">Biosciences and Bioengineering</option>
<option value="cse">Computer Science and Engg</option>
<option value="cl">Chemical Engineering</option>
<option value="cst">Chemical Science and Technology</option>
<option value="ce">Civil Engineering</option>
<option value="dd">Design</option>
<option value="eee">Electronics and Electrical Engineering</option>
<option value="ece">Electronics and Communication Engineering</option>
<option value="hss">Humanities and Social Sciences</option>
<option value="ma">Mathematics and Computing</option>
<option value="me">Mechanical Engineering</option>
<option value="ep">Engineering Physics</option>
</select>
</div>
<div class="row">
<label for="date" class="col-2">Date:</label>
<input type="date" name='date' id="date" title="Date on which ground is needed" alt="Hover text" class="col-4" required>
</div>
<div class="row">
<label for="time" class="col-2">Time:</label>
<label for="time_from" class="col-1" align="center">From:</label>
<input type="time" name='time_from' id="time_from" title="TIme from which ground is needed" alt="Hover text" class="col-1" required>
<label for="time_to" class="col-1" align="center">To:</label>
<input type="time" name='time_to' id="time_to" title="Time upto which ground is needed" alt="Hover text" class="col-1" placeholder="To" required>
</div>
<div class="row">
<label for="ground" class="col-2">Ground-Name:</label>
<input type="text" name='ground' title="Ground you want to book,eg-cricket,etc." alt="Hover text" class="col-4" required>
</div>
<div class="row">
<label for="contact" class="col-2">Contact Number:</label>
<input type="number" name='contact' title="Yourt contact number " alt="Hover text" class="col-4">
</div>
<div class="row">
<label for="activity" class="col-2">Activity:</label>
<textarea name="activity" id="activity" title="Activity for which ground is needed" alt="Hover text" class="col-4"></textarea>
</div>
<div align="center">
<input type="submit" id="sub" name="submit" value="Submit" title="Press this after filling the form" "alt="Hover text " >
</div>
</form>
</div>
</div>
<div id="wrapper" align="center" >
</div>
</body>
<script type="text/javascript " src="js/ground_book.js "></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js " integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo " crossorigin="anonymous "></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js " integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49 " crossorigin="anonymous "></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js " integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T " crossorigin="anonymous "></script>
</html>