You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

68 lines
2.5 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Settings</title>
<link rel="stylesheet" href="../stylesheets/bootstrap.min.css">
<link rel="stylesheet" href="../stylesheets/main.css">
<link rel="stylesheet" href="../stylesheets/settings.css">
<link rel="stylesheet" href="../stylesheets/material-switches.css">
</head>
<body>
<div class="container pt-3 h-100">
<h1>Settings</h1>
<hr class="dark">
<h5 class="bold text-muted">ACCOUNT SETTINGS</h5>
<hr class="dark">
<h5 class="bold text-muted">PROFILES</h5>
<hr class="dark">
<h5 class="bold text-muted">SYSTEM</h5>
<h4>
Start up with the system
<span class="material-switch float-right" id="startup-label">
<input type="checkbox" id="startup" class="form-check-label" name="startup" value="true">
<label for="startup" class="label-primary ml-3"></label>
</span>
</h4>
<span class="text-muted">Keyzo will start together with the rest of your system.</span>
<br>
<br>
<div class="ml-4 startup-min">
<h4>
Start minimized
<span class="material-switch float-right" id="startup-min-label">
<input type="checkbox" id="startup-min" class="form-check-label" name="startup-min" value="true">
<label for="startup-min" class="label-primary ml-3"></label>
</span>
</h4>
<span class="text-muted">Start the application minimized so you can't see it.</span>
</div>
<br>
<br>
<h4>
Minimize when closed
<span class="material-switch float-right" id="minimize-label">
<input type="checkbox" id="minimize" class="form-check-label" name="minimize" value="true">
<label for="minimize" class="label-primary ml-3"></label>
</span>
</h4>
<span class="text-muted">Leave Keyzo running in the background when you press X.</span>
<hr class="dark">
<h5 class="bold text-muted">ABOUT</h5>
<h4>
Keyzo version
<span class="float-right">
v0.1
</span>
</h4>
<span class="text-muted">The current Keyzo version.</span>
</div>
<!-- <script src="../javascripts/jquery.min.js"></script> -->
<script src="../javascripts/settings.js"></script>
</body>
</html>