forked from velas/JsWalletDesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 710 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (28 loc) · 710 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Velas Wallet</title>
<link href="./res/open-sans.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./main-bundle.css">
<style>
body, .app {
margin: 0;
padding: 0;
font-family: Open Sans;
width: 100%;
height: 100vh;
color: white;
}
</style>
</head>
<body>
<div id="app">Loading...</div>
<script>
require('require-ls');
var wallet = require('./app/JsWallet/main.ls');
wallet.bootstrap(document.getElementById('app'), { disablevlx1: true });
require('./renderer.js')
</script>
</body>
</html>