-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (23 loc) · 986 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Update jukebox</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-dialog.min.css">
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/bootstrap-dialog.min.js"></script>
<script type="text/javascript" src="js/mustache.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<div class="container">
<form class="form-horizontal" id="albumList">
<button type="button" id="updateButton" class="btn btn-default">Update Datenbank</button>
<button type="button" id="saveButton" style="display:none" class="btn btn-default">Speichern</button>
</form>
</div>
</body>
</html>