-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 2.16 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head title="JSON jQuery AJAX Calendar">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JSON jQuery AJAX Calendar</title>
<link rel="stylesheet" href="calendar.css" media="all" />
<script src="jquery-1.10.2.min.js"></script>
<script src="date.js"></script>
<script src="dateDisplay.js"></script>
<script src="calendar.js"></script>
</head>
<body>
<div id="wrapper">
<div id="header">
<h3>JavaScript Movie Calendar</h3>
</div>
<div id="container">
<div id="calendar">
<div id="displayTitle"></div>
<div id="dateDisplay"></div>
</div>
<div id="details">
<div id="detailTitle">
<h3>Show Details</h3>
</div>
</div>
<div id="navigation">
<!-- Form to show when user wants to search for a date -->
<div id="navSearch" class="inactive">
<label for="day" class="navInput">Day: </label>
<input type="text" id="day" class="navInput" title="Enter Day" placeholder="Enter Day">
<label for="month" class="navInput">Month: </label>
<input type="text" id="month" class="navInput" title="Enter Month" placeholder="Enter Month">
<label for="year" class="navInput">Year: </label>
<input type="text" id="year" class="navInput" title="Enter Year" placeholder="Enter Year">
<input type="button" id="setDateSubmit" value="Set Date" class="nav" />
</div>
<!-- Regular form buttons for nav bar -->
<div id="navButtons" class="active">
<input type="button" id="previous" value="<< Previous" class="nav"/>
<input type="button" id="weekMonth" value="Month / Week" class="nav"/>
<input type="button" id="goToDate" value="Go To" class="nav"/>
<input type="button" id="search" value="Search" class="nav"/>
<input type="button" id="next" value="Next >>" class="nav"/>
</div>
</div>
</div>
</div>
</body>
</html>