This repository was archived by the owner on Apr 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 1.55 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 1.55 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title></title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="application.css" type="text/css" />
<script src="AdobeLibraryAPI.js"></script>
</head>
<body>
<form>
<fieldset>
<legend>Logging</legend>
<button id="print-log">Dump DPS Log</button>
<select name="logLevels[]" multiple>
<option>BRIDGE</option>
<option>DEBUG</option>
<option>PROFILE</option>
<option>INFO</option>
<option>WARN</option>
<option>ERROR</option>
</select>
</fieldset>
<fieldset>
<legend>Login</legend>
<label for="email">Email:</label>
<input id="email" name="email" type="email" />
<label for="password">Password:</label>
<input id="password" name="password" type="password" />
<input type="submit" />
</fieldset>
<fieldset>
<legend>Download</legend>
<button id="magazine-info">Magazine Info</button>
<button id="download">Download</button>
</fieldset>
</form>
<h3>Log: <small><button id="clear-log">Clear</button></small></h3>
<div id="log"></div>
<script src="lodash.min.js"></script>
<script src="jquery-2.0.0.min.js"></script>
<script src="xdate.js"></script>
<script src="application.js"></script>
</body>
</html>