This repository has been archived by the owner on Oct 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (46 loc) · 1.49 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
<html>
<head>
<title>Idley App</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="index.css">
<script>window.$ = window.jQuery = require('jquery');</script>
<script src="index.js"></script>
</head>
<body>
<section class="hero is-link">
<div class="hero-body">
<p class="title">
Idley App
</p>
<p class="subtitle">
Manage your servers with ease.
</p>
</div>
</section>
<nav class="panel">
<p class="panel-heading">
Your Servers
</p>
<div class="panel-block">
<p class="control has-icons-left">
<input class="input" type="text" placeholder="Search">
<span class="icon is-left">
<i class="fas fa-search" aria-hidden="true"></i>
</span>
</p>
</div>
<p class="panel-tabs">
<a class="is-active">All Nodes</a>
<a>Free1</a>
<a>Free2</a>
</p>
<div id="servers">
</div>
<div class="panel-block panel-bottom">
<button class="button is-link is-outlined is-fullwidth">
Log out
</button>
</div>
</nav>
</body>
</html>