2020-05-19 10:54:00 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Service settings</title>
|
|
|
|
|
|
|
|
<meta http-equiv="Content-Security-Policy"
|
2020-05-26 09:36:37 +02:00
|
|
|
content="style-src 'self' 'unsafe-inline' https://use.fontawesome.com; font-src 'self' https://use.fontawesome.com; script-src 'self' 'sha256-UoPUIMX0PZl7cy3YoegZ0EDleSaHxTURPMyK09xsa0E='">
|
2020-05-19 10:54:00 +02:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
|
|
|
|
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
|
|
|
|
|
2020-05-25 06:16:28 +02:00
|
|
|
<link rel="stylesheet" href="css/layout.css">
|
|
|
|
<link rel="stylesheet" href="css/service-settings.css">
|
2020-05-19 10:54:00 +02:00
|
|
|
|
2020-05-26 09:36:37 +02:00
|
|
|
<script>require('./js/settings.js')</script>
|
2020-05-19 10:54:00 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2020-05-26 10:54:47 +02:00
|
|
|
<form>
|
2020-05-19 10:54:00 +02:00
|
|
|
<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>
|
2020-05-19 11:21:12 +02:00
|
|
|
<button id="download-button" type="button" class="hidden">Download</button>
|
2020-06-15 15:08:52 +02:00
|
|
|
</div>startMinimized
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<h2 class="form-header">Startup</h2>
|
|
|
|
|
|
|
|
<label class="form-group"><input type="checkbox" name="start-minimized" id="start-minimized"> Start minimized in system tray</label>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<h2 class="form-header">History navigation buttons</h2>
|
|
|
|
|
|
|
|
<label class="form-group">
|
|
|
|
<input type="checkbox" name="security-button" id="security-button"> Security info (recommended)</label>
|
|
|
|
<label class="form-group">
|
|
|
|
<input type="checkbox" name="home-button" id="home-button"> Home button</label>
|
|
|
|
<label class="form-group">
|
|
|
|
<input type="checkbox" name="back-button" id="back-button"> Go back button</label>
|
|
|
|
<label class="form-group">
|
|
|
|
<input type="checkbox" name="forward-button" id="forward-button"> Go forward button</label>
|
|
|
|
<label class="form-group">
|
|
|
|
<input type="checkbox" name="refresh-button" id="refresh-button"> Refresh page button</label>
|
|
|
|
</section>
|
2020-05-19 10:54:00 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-footer">
|
|
|
|
<div class="form-group" id="buttons">
|
2020-05-25 06:16:28 +02:00
|
|
|
<button id="cancel-button" type="button">Cancel</button>
|
2020-05-19 10:54:00 +02:00
|
|
|
<button type="submit">Save</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|