-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
51 lines (46 loc) · 1.17 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<style>
.button {
padding-left: 15px;
padding-right: 15px;
height: 30px;
width: 50px;
outline: none;
margin: 10px;
}
.url {
width: 300px;
}
div.center {
margin: auto;
margin-top: 20px;
width: 60%;
padding: 20px 20px;
border: 1px solid gray;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
</style>
</head>
<body>
<div class="center">
<h3>Monitoring </h3>
<ul id="siteList"></ul>
</div>
<div class="center">
<h3>Add web sites</h3>
<form>
<label for="name">Name</label>
<input type="input" id="name" />
<label for="url">URL</label>
<input type="input" id="url" class="url" placeholder="http://" />
<input type="button" class="button" id="btnAdd" value="Add" />
</form>
</div>
</body>
<script src="options.js"></script>
</html>