-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.51 KB
/
Copy pathindex.html
File metadata and controls
37 lines (34 loc) · 1.51 KB
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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>BYU Schedule Planner</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="js/libs/jqueryui/external/jquery/jquery.js"></script>
<script type="text/javascript" src="js/libs/jqueryui/jquery-ui.js"></script>
<script type="text/javascript" src="js/libs/handlebars/handlebars-v3.0.0.js"></script>
<script type="text/javascript" src="js/main-calendar.tpl.js"></script>
<script type="text/javascript" src="js/scheduler.js"></script>
<link rel="stylesheet" type="text/css" href="js/libs/jqueryui/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="js/libs/jqueryui/jquery-ui.structure.css">
<link rel="stylesheet" type="text/css" href="js/libs/jqueryui/jquery-ui.theme.css">
<link rel="stylesheet" type="text/css" href="css/scheduler.css">
</head>
<body>
<div id="login-screen">
<form>
<h1>Login</h1>
<input type="text"><br/>
<input type="password"><br/>
<button id="login-button">Login</button>
</form>
</div>
<div id="main-calendar">
</div>
</body>
</html>