-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·61 lines (53 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>
UsabLog
</title>
<link rel="shortcut icon" href="/img/favicon.ico" />
<link rel="stylesheet" href="css/boilerplate.css" type="text/css" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
<link type="text/css" href="css/smoothness/jquery-ui-1.8.16.custom.css" rel="Stylesheet" />
<script src="js/libs/modernizr-2.0.6.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-1.6.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/libs/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="js/libs/table2CSV.js"></script>
<script type="text/javascript" src="js/usablog.js"></script>
</head>
<body>
<header>
<h1>UsabLog</h1>
<h2>Session <span id="session" title="Click session name to change to a different session."></span><span id="session_change">change</span></h2>
<div class="menu">
<a href="about.html" class="dialog_link" title="About">About</a>
<a href="help.html" class="dialog_link" title="Help">Help</a>
<a href="#" id="download">Download</a>
</div>
</header>
<table id="log">
</table>
<footer>
<form>
<label for="note">Log entry</label> <input type="text" id="note">
<input type="submit" id="logNote" value="Log">
</form>
</footer>
<div id="dialog_change_session" title="Change Session" class="dialog">
<p>What do you want to call this new session?</p>
<form>
<fieldset>
<input type="text" id="session_name" list="session_names">
<datalist id="session_names">
<option value="Untitled New Task">
</datalist>
</fieldset>
</form>
</div>
<div id="dialog_ext" class="dialog"> </div>
<form action="utilities/csv.php" method ="post" id="csvform">
<input type="hidden" name="csv_text" id="csv_text">
<input type="hidden" name="csv_name" id="csv_name">
</form>
</body>
</html>