-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (30 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>imaginality</title>
<link rel="stylesheet" href="style.css">
<script src="./src/main.coffee" type="text/coffeescript"></script>
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/md5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/coffee-script/1.7.1/coffee-script.min.js"></script>
</head>
<body>
<section id="apiSection">
<fieldset class="line" id="lineOne">
<label for="apiKey" class="portLabel">Key</label>
<input id="apiKey" class="portInput"></input>
</fieldset>
<fieldset class="line" id="lineTwo" >
<label for="apiSecret" class="portLabel">Secret</label>
<input id="apiSecret" type="password" class="portInput"></input>
</fieldset>
<button id="clearApiInfo">Clear</button>
<p id="version" class="line"></p>
</section>
<div id="app">
<p id="status">app not loaded</p>
<div id="cards">
</div>
</div>
</body>
</html>