-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
181 lines (152 loc) · 6.28 KB
/
index.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
180
181
<!DOCTYPE html>
<html>
<!-- Page Formatting -->
<head>
<title>C3 Data Reporting</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">
C3 Data Reporting
</h1>
</header>
<!-- Form Creation to Generate Data for Graphs -->
<body class="bg-gray-800 font-montserrat">
<form action="Graph.php" target="_blank" method="get" id="graphData" name="GraphData">
<div class="grid grid-cols-3 gap-4">
<span> </span>
<table class="table-auto">
<thead>
<tr>
<th class="text-4xl font-montserrat text-white">Ministry</th>
<th class="text-4xl font-montserrat text-white">Session</th>
<th class="text-4xl font-montserrat text-white">Graphs</th>
</tr>
</thead>
<tr>
<td>
<div class="felx h-64">
<table>
<tbody>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="kids" name="ministry" value="Kids Church">
<label for="kids">Kids Church</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="youth" name="ministry" value="Youth / Shift">
<label for="youth">Youth / Shift</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="ya" name="ministry" value="Young Adults">
<label for="ya">Young Adults</label>
</td>
</tr>
</tbody>
</table>
</div>
</td>
<td height="280">
<div class="felx h-64">
<table>
<tbody>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="weds" name="session" value="Wednesdays">
<label for="weds">Wednesdsay</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="fri" name="session" value="Fridays">
<label for="fri">Friday</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="sun" name="session" value="Sundays">
<label for="sun">All Sunday</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="930" name="session" value="9:30">
<label for="930">Sunday 9:30</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="1130" name="session" value="11:30">
<label for="1130">Sunday 11:30</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="1730" name="session" value="17:30">
<label for="1730">Sunday 5:30</label>
</td>
</tr>
</tbody>
</table>
</div>
</td>
<td>
<div class="felx h-64">
<table>
<tbody>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="attendees" name="graph" value="Attendance">
<label for="kids">Attendees</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="team" name="graph" value="Team Attendance">
<label for="team">Team</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="2018" name="graph" value="2018">
<label for="2018">2018 Data</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="month" name="graph" value="Monthly Average">
<label for="month">Monthly Average</label>
</td>
</tr>
<tr>
<td class="font-montserrat text-white px-4 py-2">
<input type="radio" id="NtC" name="graph" value="New to Church">
<label for="NtC">New to Church</label>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</table>
<span> </span>
<span> </span>
<input type="submit" value="Generate Graph" class="bg-red-500 hover:bg-red-600 text-white text-center font-bold rounded py-8">
<span> </span>
<span> </span>
<input type="reset" class="bg-red-500 hover:bg-red-600 text-white text-center font-bold rounded py-8">
<span> </span>
<!-- <span> </span>
<a class="bg-red-500 hover:bg-red-600 text-white text-center font-bold rounded py-8" href="/OpenLunch.php">Open Lunch Form</a>
<span> </span> -->
</div>
</form>
</body>
</html>