-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 919 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 919 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
29
30
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Folder-Watcher</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<section class="main">
<header>
<h1>Folder-Watcher</h1>
</header>
<div>
<label>Source folder: </label><input id="source" type="text" />
</div>
<div>
<label>Target folder: </label><input id="target" type="text" />
</div>
<button id="start-button">Start Listening</button>
<button id="stop-button">Stop Listening</button>
<div>
<label id="user-message"></label>
</div>
</section>
<footer></footer>
</div>
<script type="text/javascript" src="build/main.js"></script>
</body>
</html>