52 lines
2.8 KiB
HTML
52 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="description" content="OwlBoard - Live train departures for traincrew."/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="application-name" content="OwlBoard">
|
|
<meta name="author" content="Frederick Boniface">
|
|
<meta name="theme-color" content="#155bb7">
|
|
<link rel="stylesheet" type="text/css" href="./styles/style.css"/>
|
|
<link rel="stylesheet" type="text/css" href="./styles/settings.css"/>
|
|
<link rel="stylesheet" type="text/css" href="./styles/find-code.css"/>
|
|
<link rel="icon" type="image/png" href="./images/logo/logo-sq-256.png"/>
|
|
<link rel="manifest" type="application/json" href="./manifest.json"/>
|
|
<title>OwlBoard - Settings</title>
|
|
<script async src="./js/settings.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="top_button" class="hide_micro">
|
|
<button aria-label="Back" class="sidebar_control" onclick="history.back()">⇦</button>
|
|
</div>
|
|
|
|
<picture>
|
|
<source srcset="./images/logo/logo-full-256.webp" type="image/webp">
|
|
<source srcset="./images/logo/logo-full-256.png" type="image/png">
|
|
<img class="titleimg" src="./images/logo/logo-full-256.png" alt="OwlBoard Logo">
|
|
</picture>
|
|
<h2>Settings</h2>
|
|
<p>Change your OwlBoard settings.</p>
|
|
<p>Any settings you apply will only apply to the device you are using now.</p>
|
|
|
|
<p>Settings are not yet fully implemented, some options won't apply properly yet.</p>
|
|
|
|
<label>Personal Quick Links:</label><br>
|
|
<p>Enter one CRS/3ALPHA code per box</p>
|
|
<input type="text" maxlength="3" id="ql0" name="ql0" autocomplete="off" class="small-lookup-box">
|
|
<input type="text" maxlength="3" id="ql1" name="ql1" autocomplete="off" class="small-lookup-box"><br>
|
|
<input type="text" maxlength="3" id="ql2" name="ql2" autocomplete="off" class="small-lookup-box">
|
|
<input type="text" maxlength="3" id="ql3" name="ql3" autocomplete="off" class="small-lookup-box"><br>
|
|
<input type="text" maxlength="3" id="ql4" name="ql4" autocomplete="off" class="small-lookup-box">
|
|
<input type="text" maxlength="3" id="ql5" name="ql5" autocomplete="off" class="small-lookup-box"><br>
|
|
<input type="text" maxlength="3" id="ql6" name="ql6" autocomplete="off" class="small-lookup-box">
|
|
<input type="text" maxlength="3" id="ql7" name="ql7" autocomplete="off" class="small-lookup-box"><br>
|
|
<input type="text" maxlength="3" id="ql8" name="ql8" autocomplete="off" class="small-lookup-box">
|
|
<input type="text" maxlength="3" id="ql9" name="ql9" autocomplete="off" class="small-lookup-box"><br>
|
|
<button onclick="setQl()" class="lookup-button">Apply</button>
|
|
<button onclick="clearQl()" class="lookup-button">Reset</button>
|
|
|
|
</body>
|
|
</html> |