-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenLunch.php
67 lines (64 loc) · 2.16 KB
/
OpenLunch.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
<!DOCTYPE html>
<html>
<!-- Page Formatting -->
<head>
<title>Open Lunch</title>
<meta name="Author" content="[email protected]"/>
<link rel="stylesheet" href="output.css">
</head>
<!-- Page Heading -->
<header class="bg-gray-800 font-montserrat">
<h1 class="text-6xl text-white text-center">
Open Lunch
</h1>
</header>
<!-- Form Creation to Generate Data for Graphs -->
<body class="bg-gray-800 font-montserrat">
<!--<form action="APICall.php" target="_blank" method="get" id="graphData" name="GraphData">-->
<table>
<thead>
<tr>
<th colspan="2"><h3>Fill in this weeks information</h3><br></th>
</tr>
</thead>
<tbody>
<tr>
<td>Date:</td>
<td><input type='date' name='firstName' id='firstName1' value=<?php echo $firstName; ?>></td>
</tr>
<tr>
<td>Volunteers:</td>
<td><input type='text' name='lastName' id='lastName1' value=<?php echo $lastName; ?>></td>
</tr>
<tr>
<td>No. of Meals Served:</td>
<td><input type='text' name='email' id='email1' value=<?php echo $email; ?>></td>
</tr>
<tr>
<td>Food donation:</td>
<td><input type='text' name='dob' id='dob1' value=<?php echo $dob; ?>></td>
</tr>
<tr>
<td>Cash Donation:</td>
<td><input type='text' name='username' id='username1' value=<?php echo $username; ?>></td>
</tr>
<tr>
<td>Expenditure:</td>
<td><input type='text' name='password' id='password1'></td>
</tr>
<tr>
<td>Main Meal and Desert:</td>
<td><input type='text' name='driverStatus' id='driverStatus1' value=<?php echo $driverStatus; ?>></td>
</tr>
<tr>
<td></td>
<td>
<input type='submit' class="button" name="submitForm" value='Submit' onclick="submitForm">
<input type='reset' class="button" name="clear" value='Reset'>
</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>