-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 856 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 856 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>TOKN</title>
<link rel="stylesheet" href="pure.min.css" />
</head>
<body style="background-color: #eee">
<h2 style="background-color: #ccc; padding: 10px; color: #2b2b2b">
Login to CWBI services
</h2>
<div style="margin: 10px">
<div>
<h3>Cumulus</h3>
<button id="login" class="pure-button pure-button-primary">
Login
</button>
<p>
After logging in you can close this window and you will stay logged in
until you quit from the application tray.
</p>
<p id="version" style="color: #888; font-size: 12px"></p>
</div>
</div>
<script>
// You can also require other files to run in this process
require('./renderer.js');
</script>
</body>
</html>