-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent.html
More file actions
152 lines (131 loc) · 3.97 KB
/
Copy pathevent.html
File metadata and controls
152 lines (131 loc) · 3.97 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!doctype html>
<html>
<head>
<title>Student Event Registration</title>
</head>
<body>
<h1>Student Event Registration</h1>
<form>
<label for="fullname">Full Name:</label><br />
<input type="text" id="fullname" name="fullname" required /><br /><br />
<label for="email">Email Address:</label><br />
<input type="email" id="email" name="email" required /><br /><br />
<label for="phone">Phone Number:</label><br />
<input type="tel" id="phone" name="phone" required /><br /><br />
<label for="dept">Department:</label><br />
<select name="dept" id="dept" style="width: 180px; text-align: center">
<option value="" selected disabled>Select Department</option>
<option value="swe">SWE</option>
<option value="swe">CSE</option>
<option value="swe">BBA</option>
<option value="swe">NFE</option>
<option value="swe">ITM</option>
<option value="swe">CIS</option></select
><br /><br />
<label for="eventdate">Event Date:</label><br />
<input type="date" id="eventdate" name="eventdate" required /><br /><br />
<label for="start">Start time:</label><br />
<input type="time" name="start" id="start" required /><br /><br />
<label for="end">End time:</label><br />
<input type="time" name="end" id="end" required /><br /><br />
<label>Event Categories:</label><br />
<input type="checkbox" id="technical" name="category" value="Technical" />
<label for="technical">Technical</label><br />
<input type="checkbox" id="cultural" name="category" value="Cultural" />
<label for="cultural">Cultural</label><br />
<input type="checkbox" id="sports" name="category" value="Sports" />
<label for="sports">Sports</label><br /><br />
<input type="submit" value="Submit" />
<input type="reset" value="Reset" />
</form>
<br />
<fieldset>
<legend>Event Schedule</legend>
<table border="1" cellpadding="8" cellspacing="0">
<tr>
<th>Day</th>
<th>Event Start Time</th>
<th>Event End Time</th>
</tr>
<tr>
<td>Sunday</td>
<td>09:00 AM</td>
<td>11:00 AM</td>
</tr>
<tr>
<td>Monday</td>
<td>10:00 AM</td>
<td>12:00 PM</td>
</tr>
<tr>
<td>Tuesday</td>
<td>11:00 AM</td>
<td>01:00 PM</td>
</tr>
<tr>
<td>Wednesday</td>
<td>02:00 PM</td>
<td>04:00 PM</td>
</tr>
<tr>
<td>Thursday</td>
<td>03:00 PM</td>
<td>05:00 PM</td>
</tr>
<tr>
<td>Friday</td>
<td colspan="2">No events on this day</td>
</tr>
</table>
</fieldset>
<br />
<fieldset>
<legend>Conference Room Availablity</legend>
<table border="1" cellpadding="8" cellspacing="0">
<tr>
<th>Day</th>
<th>Buidling Number</th>
<th>Room Number</th>
<th>Start Time</th>
<th>End Time</th>
</tr>
<tr>
<td>Sunday</td>
<td colspan="4" align="center">No Room Available</td>
</tr>
<tr>
<td>Monday</td>
<td>Ab4</td>
<td>603</td>
<td>9:00 am</td>
<td>11:00 am</td>
</tr>
<tr>
<td>Tuesday</td>
<td>Yksg3</td>
<td>104</td>
<td>11:00 am</td>
<td>1:00 pm</td>
</tr>
<tr>
<td>Wednesday</td>
<td>Ab4</td>
<td>504</td>
<td>2:00 pm</td>
<td>4:00 pm</td>
</tr>
<tr>
<td>Thursday</td>
<td>Ab2</td>
<td>205</td>
<td>4:00 pm</td>
<td>6:00 pm</td>
</tr>
<tr>
<td>Friday</td>
<td colspan="4" align="center">OFFDAY</td>
</tr>
</table>
</fieldset>
</body>
</html>