-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 2.05 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
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="css/global.css"/>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/field.css">
<link rel="stylesheet" href="css/button.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/errors.css">
</head>
<body>
<main class="main">
<header id="rx-header"></header>
<div class="field field--aligned" data-rx="port">
<label for="port" class="field__label">Port:</label>
<div class="field__item">
<input class="field__text-input"
type="text"
name="port"
id="port"
placeholder="eg: 4000"
value="">
<div class="field__controls">
<span class="icon">
<i class="material-icons" id="port-status-icon">network_check</i>
<!--<i class="material-icons">block</i>-->
</span>
</div>
</div>
</div>
<div class="field field--aligned field--last">
<label class="field__label">Directories:</label>
<div id="dir-list"></div>
<div class="field__item" style="margin-top: 20px;">
<button type="button"
class="button button--icon button--icon-text"
id="dir-select"
>
<i class="material-icons">add_circle_outline</i>
<span>Add directory</span>
</button>
</div>
</div>
</main>
</body>
<script>
// You can also require other files to run in this process
require('./dist/renderer');
</script>
<script async id="__bs_script__" src="http://localhost:3000/browser-sync/browser-sync-client.js?v=2.18.13"></script>
</html>