-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (41 loc) · 2.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Webron | A Web Browser for you.</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</head>
<style>.js div#preloader { position: fixed; left: 0; top: 0; z-index: 999; width: 100%; height: 100%; overflow: hidden; background: url('ring.gif') no-repeat center center; z-index: 99999999999999999;}
</style>
<body>
<div id="preloader"></div>
<div class="panel panel-info">
<div class="panel-heading">
<div id="newUrlbar">
<span id="loadgif" style="float:left; display:none;"><img src="assets/images/default-2.gif"></span>
<button id="homeButton" class="btn btn-md btn-info" style="float:left;"><span class="glyphicon glyphicon-home"></span> Home</button>
<input id="urlinput" class="form-control" style="width:80%; float:left;" placeholder="Enter URL here"/>
<button id="Go" class="btn btn-info" style="float:left;"><span class="glyphicon glyphicon-search"></span> Search</button>
<br style="clear:both" />
<!-- <div id="newTab">
<button class="btn btn-md btn-info" id="btn" style="float:left;">New Tab</button>
</div>
<button id="addNewButton" class="btn btn-md btn-info" style="float:left;">+</button> -->
</div>
</div>
</div>
<div id="newWebview" class="container">
<webview src="http://www.google.com" id="webviewpane" style="height:590px;"></webview>
</div>
</body>
<script>
require('./renderer.js')
require('bootstrap')
require('jquery')
</script>
</html>