forked from Hexagenic/wanikaniwallpaper-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (50 loc) · 2.75 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
<!doctype html>
<html>
<head>
<title>Wanikani Wallpaper generator</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="content" class="clearfix">
<h1>Wanikani Wallpaper Generator</h1>
<div id="left-column">
<form id="api-form">
<h2>Settings</h2>
<label class="fixed-width-label" for="form-apikey">API Key</label><input type="text" id="form-apikey" placeholder="API Key"><br>
<label class="fixed-width-label" for="form-width">Width</label><input type="number" id="form-width" placeholder="width">
<label class="fixed-width-label" for="form-height">Height</label><input type="number" id="form-height" placeholder="height"><br>
<input type="checkbox" id="show-advanced"> <label for="show-advanced">Show Advanced Settings</label><br>
<div id="advanced-settings">
<h2>Advanced settings</h2>
<h3>Margins</h3>
<label class="fixed-width-label" for="form-margin-top">Top</label><input id="form-margin-top" type="number" placeholder="top margin"><br>
<label class="fixed-width-label" for="form-margin-bottom">Bottom</label><input id="form-margin-bottom" type="number" placeholder="bottom margin"><br>
<label class="fixed-width-label" for="form-margin-left">Left</label><input id="form-margin-left" type="number" placeholder="left margin"><br>
<label class="fixed-width-label" for="form-margin-right">Right</label><input id="form-margin-right" type="number" placeholder="right margin"><br>
<h3>Colors</h3>
<label class="fixed-width-label" for="form-color-background">Background</label><input id="form-color-background" type="color"><br>
<label class="fixed-width-label" for="form-color-unseen">Unseen</label><input id="form-color-unseen" type="color"><br>
<label class="fixed-width-label" for="form-color-apprentice">Apprentice</label><input id="form-color-apprentice" type="color"><br>
<label class="fixed-width-label" for="form-color-guru">Guru</label><input id="form-color-guru" type="color"><br>
<label class="fixed-width-label" for="form-color-master">Master</label><input id="form-color-master" type="color"><br>
<label class="fixed-width-label" for="form-color-enlighten">Enlighten</label><input id="form-color-enlighten" type="color"><br>
<label class="fixed-width-label" for="form-color-burned">Burned</label><input id="form-color-burned" type="color"><br>
</div>
<input type="submit" id="submit-api" value="REQUEST">
</form>
</div>
<div id="right-column">
<h2>Result</h2>
<div id="message">
<p>Ready to begin</p>
</div>
</div>
<div class="footer">
<p>
Fork on <a href="https://github.com/hexagenic/wanikaniwallpaper-js">Github</a>
</p>
</div>
</div>
<script data-main="js/main" src="js/require.js"></script>
</body>
</html>