-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathoptions.html
executable file
·80 lines (76 loc) · 2.22 KB
/
options.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html>
<head>
<title>LJ Juggler - Options</title>
<link id="style" rel="stylesheet" type="text/css" href="css/main.css">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<script src="js/md5.js"></script>
<script src="lj_site_definitions.js"></script>
<script src="js/options.js"></script>
<section id="table">
<section id="page">
<div class="wrapper">
<h1>LJ Juggler</h1>
<h2>Account Management</h2>
<hr>
<h3>Accounts:</h3>
<ul id="account-list">
</ul>
<br>
<h3>Add an account:</h3></p>
<form id="new_account">
<div class="row">
<div class="col-form">
<label>Site:</label>
</div>
<div class="col-element">
<select id="sitedropdown"></select>
</div>
</div>
<div class="row">
<div class="col-form">
<label>Username:</label>
</div>
<div class="col-element">
<input type="text" id="username">
</div>
</div>
<div class="row">
<div class="col-form">
<label>Password:</label>
</div>
<div class="col-element">
<input type="password" id="password">
</div>
</div>
<div class="row">
<input type="submit" value="Add Account" class="submit">
</div>
</form>
<h3>Options:</h3>
<p>Reload tabs on account change?
<select id="login_action">
<option value="">No</option>
<option value="current">Current Tab Only</option>
<option value="all">All Tabs</option>
</select>
<p>Import / Export Account List:
<br><input type="button" id="export" value="Export to file" class="ex">
<br>Import from file:
<br><input type="file" id="browse" accept=".json" class="im"> <input type="button" id="import" value="Import">
<br>LJ Jugger Theme:
<select id="theme">
<option value="light">Light</option>
<option value="dark">Dark</option>
<input type="button" id="subtheme" value="Change Theme">
</select>
</p>
<hr>
<p class="desc"><a href="http://rushin-doll.net/lj-juggler/">About</a> | <a href="http://rushin-doll.net/lj-juggler/change-log.html">Changelog</a> | <a href="http://mistletotem.dreamwidth.org/">CSS</a></p>
</div>
</section>
</section>
</body>
</html>