-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
55 lines (51 loc) · 1.92 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
<html>
<head>
<title>New tab</title>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
</script>
<script
src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"
integrity="sha256-eGE6blurk5sHj+rmkfsGYeKyZx3M4bG+ZlFyA7Kns7E="
crossorigin="anonymous">
</script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="js/jquery.toast.min.js"></script>
<link rel="stylesheet" href="css/jquery.toast.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/HomeAssistant.js"></script>
<script src='js/init.js' type="text/javascript"></script>
<script src="js/fSelect.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/fSelect.css">
</head>
<body>
<div id="userContent"></div>
<div>
<i id="i_settings" class="material-icons">menu</i>
<div id="sideMenu" data-hidden="true">
<button class="collapsible">Entities</button>
<div class="content">
<form>
<select id="select_components" multiple="multiple">
</select>
</form>
</div>
<button class="collapsible">Services</button>
<div class="content">
<p style="color:white; padding: 0 2em;">This part is currently not a priority, and does nothing at the time.</p>
<!-- <form action="">
<select name="select_services" id="select_services"></select>
</form> -->
</div>
<div id="sideMenuFooter">
<div id="sideMenuFooterLinks">
<a href="https://github.com/RonnyAL/HassTabs">GitHub</a>
<a id="extSettings" href="options.html">Extension settings</a>
</div>
</div>
</div>
</div>
</body>
</html>