forked from OmniDB/OmniDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 838 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>OmniDB</title>
<link rel="stylesheet" href="css/login.css">
<style>
webview {
width: 100%;
height: 100%;
}
</style>
</head>
<body id="browser">
<div id="loading_interface">
<div class="loginWrap">
<div id="div_time">
<div class="logo">
<img src="images/omnidb_big.png">
</div>
<div class="version">
<small>v2.16.0</small>
</div>
</div>
<div id="loading" class="inputWrap">
Starting OmniDB...<br/>
</div>
</div>
</div>
<div id="views">
<webview id="view" class="page" src="" autosize="on" style="display: none;"></webview>
</div>
<script>
require('./renderer.js')
</script>
</html>