-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 922 Bytes
/
index.html
File metadata and controls
26 lines (23 loc) · 922 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>CalDav Web Client</title>
<link type="text/css" href="fullcalendar.css" rel="stylesheet" />
<link type="text/css" href="style.css" rel="stylesheet" />
</head>
<body>
<div id="changecredentials">Change Credentials</div>
<div id="login">
<h1>CalDav Web Client</h1>
<label for="url">Url:</label><input type="text" id="url" /><br />
<label for="user">User:</label><input type="text" id="user" /><br />
<label for="password">Password:</label><input type="password" id="password" /><br />
</div>
<div id="calendar" class="hidden">
</div>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery-ui.custom.min.js"></script>
<script type="text/javascript" src="fullcalendar.min.js"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>