-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
86 lines (75 loc) · 1.93 KB
/
index2.html
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
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' type='text/css' href='fullcal/cal.css'/>
<link rel='stylesheet' type='text/css' href='css/styles2.css' />
<script type='text/javascript' src='jquery/jquery-1.5.2.min.js'></script>
<script type='text/javascript' src='query/jquery-ui-1.8.11.custom.min.js'></script>
<script type='text/javascript' src='fullcal/testcal.js'></script>
<script type='text/javascript' src='events.js'></script>
<title>
SODAASN (+ scott)
</title>
</head>
<body>
<div id='header'>
Welcome (insert group name)!
</div>
<div id="addEvent">
<form action="hidden/addEvent.php" method="POST">
<input type="hidden" name="groupID" value="WILLHOLDGROUPIDNUMBER">
<table>
<th>
<td colspan="2">ADD EVENT</td>
</th>
<tr>
<td>Name:</td>
<td><input name="name" type="text"></td>
</tr>
<tr>
<td>Date:</td>
<!-- should probably make this into a jquery datepicker -->
<td><input name="date" type="text"></td>
</tr>
<tr>
<td>Location:</td>
<td><input name="location" type="text"></td>
</tr>
<tr>
<td>Time:</td>
<!-- could also make this better with jquery -->
<td><input name="time" type="text"></td>
</tr>
<tr>
<td>Blurb!</td>
<td><input name="blurb" type="text"></td>
</tr>
<tr>
<td>Any tags?</td>
<td>Well too bad, because you can't tag right now.</td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="ADD ME"></td>
</tr>
</table>
</form>
</div>
<div id='calendar'>
</div>
<div id='lowerleft'>
<form name="qform" onsubmit="searchEvents()" method="POST">
<table>
<tr>
<td>I want a calendar that has:</td>
<td><input name="squery" type="text" value=""></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="button" value="SEARCH">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>