-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform.php
executable file
·44 lines (40 loc) · 1.45 KB
/
form.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
<?php include "inc/html-top.inc"; ?>
<div class = "bodyContainer4">
<form method="POST" action="student_added.php">
<div class="formSubTitle">
<h2>What's your name?</h2>
</div>
<input type="text" name="feedbackGiverName" required>
<div class="formSubTitle">
<h2>Which student was your favorite?</h2>
</div>
<div>
<input type="radio" id="studentChoice1"
name="studentChoice" value="Alexander Punj">
<label for="studentChoice1">Alexander Punj</label>
<br/>
<input type="radio" id="studentChoice2"
name="studentChoice" value="Masaru Fujimaki">
<label for="studentChoice2">Masaru Fujimaki</label>
<br/>
<input type="radio" id="studentChoice3"
name="studentChoice" value="Matt Resnikoff">
<label for="studentChoice3">Matt Resnikoff</label>
<br/>
<input type="radio" id="studentChoice4"
name="studentChoice" value="Zubair Aziz">
<label for="studentChoice4">Zubair Aziz</label>
</div>
<div class="formSubTitle">
<h2>Why?</h2>
</div>
<textarea rows="5" cols="50" name="reason" required></textarea>
<br/>
<input type="submit" id="submitButton"
name="submitClick" value="Submit">
</form>
</div>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/menu-highlighter.js"></script>
</body>
</html>