-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
50 lines (41 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bootstrap & jQuery Electron!</title>
<link href="css/photon/css/photon.icons.css" rel="stylesheet" type="text/css">
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<script>
window.$ = window.jQuery = require('jquery');
require("./lib/render/index.js");
</script>
</head>
<body>
<!-- show some copy/pasted Bootstrap entities -->
<div class="container text-center">
<div class="jumbotron">
<h1 class="display-3">Bootstrap Styles</h1>
<p class="lead">With jQuery usage</p>
</div>
<div class="row">
<div class="col-sm-4">
<form>
<div class="form-group">
<span class="icon icon-note"> See phonton icons too!</span>
</div>
<div class="form-group">
<label>Email</label>
<input type="email" class="form-control" aria-describedby="input-email" placeholder="[email protected]" <small id="input-email"
class="form-text text-muted">Enter email.</small>
</div>
</form>
<!-- use this for some jQuery manipulation -->
<div id="os-div" class="text-center">Click button to set OS!</div>
<div class="form-group">
<button id="button-id" type="button" class="btn btn-default center-block">Set OS</button>
</div>
</div>
</div>
</div>
</body>
</html>