-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.24 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">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
<link href="./styles.css" rel="stylesheet">
<title>Hello World!</title>
<style>
.container {
margin: 0 auto;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="form-group">
<input type="text" id="appkey" name="appkey" placeholder="Your appkey" required>
</div>
<div class="form-group form-group--buttons">
<button id="init">Init</button>
<button id="uninit">Uninit</button>
</div>
<div class="form-group">
<input type="text" id="account" name="account" placeholder="Your account ID" required>
</div>
<div class="form-group">
<input type="password" id="password" name="password" placeholder="Password" required>
</div>
<div class="form-group form-group--buttons">
<button id="login">Login</button>
<button id="logout">Logout</button>
</div>
</div>
<script src="./renderer.js"></script>
</body>
</html>