This repository has been archived by the owner on Feb 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
kong.html
70 lines (60 loc) · 2.29 KB
/
kong.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Elements -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Level">
<title>IOU Helper 2.0</title>
<!-- Semantic UI Links -->
<link rel="stylesheet" type="text/css" href="semantic.min.css">
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script src="jquery-3.2.1.min.js"></script>
<script src="semantic.min.js"></script>
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Electron Styles -->
<link rel="stylesheet" href="node_modules/electron-tabs/electron-tabs.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Custom JS -->
<script src="kongRender.js"></script>
</head>
<body class="kong-background">
<div class="ui fixed inverted menu iHeader">
<div class="menu">
<div class="item">
Kongregate Account
</div>
</div>
<div class="right menu right-menu">
<div class="item">
<div id="kong-min"><i class="fa fa-window-minimize icon-red cmin" aria-hidden="true"></i>
</div>
<div id="kong-max"><i class="fa fa-window-maximize icon-red cmax" aria-hidden="true"></i></div>
<div>
<i id="kong-exit" class="fa fa-times icon-red cclose" aria-hidden="true"></i></div>
</div>
</div>
</div>
<form class="ui form kong-form">
<div class="field">
<label>Kongregate Username</label>
<input type="text" name="kong-user" placeholder="Level1Pro" id="kkong-user">
</div>
<div class="field">
<label>Kongregate ID</label>
<input type="text" name="kong-id" placeholder="24952154" id="kkong-id">
</div>
<div class="field">
<label>Kongregate Token</label>
<input type="text" id="kkong-token" name="kong-token" placeholder="66802c372b7f76b0e982e056704drhgrcac3381eer2r2a730b3c0f24ec364843">
</div>
<button class="ui button teal" type="submit" id="submitKong">Start Client</button>
</form>
</body>
</html>