-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (64 loc) · 3.03 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE HTML>
<html>
<head>
<title>EASIER Extension</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container mt-3" style="width: 500px;">
<center>
<img src="./logo128.png" height="64" class="mb-3"></img>
</center>
<!-- Navigation -->
<nav class="nav nav-pills nav-justified">
<button class="nav-item nav-link active tactile" id="pin-tab">Pins</a>
<button class="nav-item nav-link tactile" id="settings-tab">Settings</a>
</nav>
<!-- Form to gather node information -->
<div id="settings" style="display: none" class="mb-3">
<div class="mb-3">
<label for="ip" class="form-label"><b>IP/Domain:</b></label>
<input type="ip" class="form-control" id="ip">
</div>
<div class="mb-3">
<label for="port" class="form-label"><b>Port:</b></label>
<input type="port" class="form-control" id="port">
</div>
<div class="mb-3">
<label for="dir" class="form-label"><b>MFS Directory</b></label>
<input type="dir" class="form-control" id="dir">
</div>
<button class="btn btn-primary" id="save-settings">Save</button>
</div>
<div id="pins">
<div style="display: flex; margin-top: 15px; justify-content: space-between;">
<p id="current-dir">Directory: </p>
<button style="align-self: flex-end; border: none;" id="back">Back</button>
</div>
<table class="table table-bordered mt-3">
<thead>
<tr>
<th class="centered-header">#</th>
<th class="centered-header">Name</th>
<th class="centered-header">CID</th>
<!-- Create a dropdown list of unique values that appear in the 'Type' column -->
<th class="centered-header">Select Type
<select id="type-filter" class="form-select form-select-sm">
<option value=""></option>
</select></th>
</tr>
</thead>
<tbody>
<tr>
<td id="date"></td>
<td id="areaName"></td>
<td id="latestBy"></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
<script src="script.js"></script>
</html>