-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkshop.php
179 lines (158 loc) · 5.11 KB
/
workshop.php
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<?php
ob_start();
session_start();
include"includes/db_conn.php";
include"includes/header.php";
?>
<body>
<header id="home">
<?php
include"includes/navmenu.php";
?>
</header>
<br>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<center><h2>Workshop</h2></center>
<span><b> Workshops are led by experienced graduate students, faculty and staff from departments throughout the University and are designed to provide a forum for discussing effective teaching<b></span>
<div>
<br>
<br>
</div>
<div class="container">
<form method="post" class="form-group" action="Process/workshop_submit.php">
<div class="row">
<div class="col-25">
<label for="name">Name</label>
</div>
<div class="col-75">
<input type="text" name="name" class="form-control" placeholder="Your name.." required>
</div>
</div>
<br>
<div class="row">
<div class="col-25">
<label for="email">Email</label>
</div>
<div class="col-75">
<input type="email" name="email" class="form-control" placeholder="Your email.." required>
</div>
</div>
<br>
<div class="row">
<div class="col-25">
<label for="Branch">Branch</label>
</div>
<div class="col-75">
<select name="Branch" class="form-control" required>
<option value="Computer Engineering">Computer Engineering</option>
<option value="Electrical Engineering">Electrical Engineering</option>
<option value="Civil Engineering">Civil Engineering</option>
<option value="Electronics and Telecommunication Engineering">Electronics and Telecommunication Engineering</option>
<option value="Mechanical Engineering">Mechanical Engineering</option>
</select>
</div>
</div>
<br>
<div class="row">
<div class="col-25">
<label for="PassYear">PassOut Year</label>
</div>
<div class="col-75">
<select name="PassYear" class="form-control" required>
<option value="2003">2003</option>
<option value="2004">2004</option>
<option value="2005">2005</option>
<option value="2006">2006</option>
<option value="2007">2007</option>
<option value="2008">2008</option>
<option value="2009">2009</option>
<option value="2010">2010</option>
<option value="2011">2011</option>
<option value="2012">2012</option>
<option value="2013">2013</option>
<option value="2014">2014</option>
<option value="2015">2015</option>
<option value="2016">2016</option>
<option value="2017">2017</option>
<option value="2018">2018</option>
<option value="2019">2019</option>
</select>
</div>
<br>
<div class="">
<div class="">
<label for="Audience">Target Audience</label>
</div>
<div class="col-75">
<select id="Audience" name="Audience" class="form-control" required>
<option value="Teaching Staff">Teaching Staff</option>
<option value="Non-teaching Staff">Non-teaching Staff</option>
<option value="All Students">All Students</option>
<option value="First Year">First Year</option>
<option value="Second year">Second year</option>
<option value="Third Year">Third Year</option>
</select>
</div>
<br>
<div class="">
<div class="">
<label for="Dept">Department for Workshop</label>
</div>
<div class="">
<select name="Dept" class="form-control" required>
<option value="Computer Engineering">Computer Engineering</option>
<option value="Electrical Engineering">Electrical Engineering</option>
<option value="Civil Engineering">Civil Engineering</option>
<option value="Electronics and Telecommunication Engineering">Electronics and Telecommunication Engineering</option>
<option value="Mechanical Engineering">Mechanical Engineering</option>
</select>
</div>
</div>
<br>
<div class="">
<div class="col-25">
<label for="count">Count</label>
</div>
<div class="col-75">
<input type="text" name="count" class="form-control" placeholder="Number of audience..." required>
</div>
</div>
<br>
<div class="">
<div class="col-25">
<label for="Interested Topics">Interested Topics</label>
</div>
<div class="col-75">
<input type="text" name="InterestedTopic" class="form-control" placeholder="Your Interested Topics.." required>
</div>
</div>
<br>
<div class="">
<div class="col-25">
<label for="datetime">Suitable Date and Time</label>
</div>
<br>
<div class="col-75">
<input type="date" name="Date" required> <input type="time" name="Time" required>
</div>
<br>
<div class="row">
<center>
<input type="submit" class="btn btn-success" name="submit" value="Submit">
<input type="reset" class="btn btn-danger" value="Reset">
</center>
</div>
</form>
</div>
</body>
</html>
<br>
<?php
include"includes/footer.php";
include"includes/modals.php";
?>