-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
56 lines (48 loc) · 1.11 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
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="assets/css/app.css">
<style type="text/css">
ul {
width: max-content;
margin: auto;
}
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
overflow: auto;
}
#addWebsiteContainer {
/**/
}
li > div {
display: inline-block;
float: right;
margin-left: 10px;
}
</style>
</head>
<body>
<div class="align-center" id="addWebsiteContainer">
<h1 class="heading">Add New Website</h1>
<div class="form-field">
<span style="margin-bottom: 10px;">Like: <code class="text-theme">https://example.com/adminer.php</code></span>
<div style="margin-bottom: 5px;">
<input type="text" name="" placeholder="Full URL to the Adminer file" id="txtAddWebsite">
<button id="btnAddWebsite">
↵
</button>
</div>
<span class="text-danger" id="errAddWebsite"></span>
</div>
</div>
<h1 class="heading align-center">Adminer Websites</h1>
<ul id="websitesList"></ul>
<script src="assets/js/app.js"></script>
<script src="assets/js/options.js"></script>
</body>
</html>