-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
60 lines (54 loc) · 2.02 KB
/
welcome.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
<html>
<head>
<!-- DOES NOT WORK -->
<!-- <link rel="stylesheet" href="/assets/volumio-vendor/vendor-aa5c8b9861.css"> -->
<link rel="stylesheet" href="http://localhost:8837/assets/css/vendor.css">
<link rel="stylesheet" href="http://localhost:8837/assets/css/app.css">
<script src="./welcome.js"></script>
<style>
body {
background: #000;
}
</style>
</head>
<body>
<div style="background-image: url(http://localhost:8837/assets/img/albumart.jpeg);width:100%;height: 100%;position: absolute;background-position: center;background-size: cover;">
<div id="content">
<div id="pluginWrapper">
<div class="box">
<div class="boxHeader">
<div class="title">
<h2>Welcome to the Volumio2 Client</h2>
</div>
</div>
<div style="position: fixed; bottom: 0; width:100%">
<div class="panel panel-default" style="margin-right: 30px" >
<!-- <div class="panel-heading">
<h3 class="panel-title">
<i class="fa fa-plug"></i>
Network Settings
</h3>
</div> -->
<div class="panel-body ">
<form class="form-horizontal">
<div class="form-group">
<label class="control-label">Volumio URL</label>
<div class="control-item">
<input id="url" class="form-control" placeholder="Url of the volumio2 server (e.g. http://192.168.1.5)">
</div>
</div>
<div class="form-group">
<div class="control-buttons">
<button type="button" id="save-url" class="btn btn-info">Save</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>