41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Service settings</title>
|
|
|
|
<meta http-equiv="Content-Security-Policy"
|
|
content="style-src 'self' 'unsafe-inline' https://use.fontawesome.com; font-src 'self' https://use.fontawesome.com; script-src 'self' 'unsafe-inline'">
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
|
|
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
|
|
|
|
<link rel="stylesheet" href="style/layout.css">
|
|
<link rel="stylesheet" href="style/service-settings.css">
|
|
|
|
<script src="js/settings.js" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
<form action="javascript: save();">
|
|
<div class="form-header">
|
|
<h1>Settings</h1>
|
|
</div>
|
|
|
|
<div class="form-body">
|
|
<div class="updates">
|
|
<p id="current-version"></p>
|
|
<p id="update-status">Loading...</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-footer">
|
|
<div class="form-group" id="buttons">
|
|
<button id="cancel-button">Cancel</button>
|
|
<button type="submit">Save</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|