2023-02-09 20:29:07 +00:00
<!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 = "#00b7b7" >
< link rel = "apple-touch-icon" href = "/images/app-icons/any/apple-192.png" >
< link rel = "stylesheet" type = "text/css" href = "./styles/main.css" / >
< link rel = "stylesheet" type = "text/css" href = "./styles/settings.css" / >
< link rel = "icon" type = "image/svg+xml" href = "./images/icon.svg" / >
< link rel = "manifest" type = "application/json" href = "./manifest.json" / >
< title > OwlBoard - Settings< / title >
< script src = "./js/lib.main.js" defer > < / script >
< script src = "./js/settings.js" defer > < / script >
< / head >
< body >
< div id = "loading" >
< div class = "spinner" >
< / div >
< p > Loading< / p >
< / div >
< div id = "done" >
<!-- Insert white tick SVG Here -->
< picture id = "save-icon" >
< source srcset = "./images/nav/save.svg" type = "image/svg+xml" >
< img src = "./images/nav/save-59.png" alt = "" >
< / picture >
< p > Saved< / p >
< / div >
< div id = "top_button" class = "hide_micro" >
< a href = "/" >
< picture aria-label = "Home" class = "sidebar_control" >
< source srcset = "/images/nav/back.svg" type = "image/svg+xml" >
< img src = "back-40.png" alt = "Home" >
< / picture >
< / a >
< / div >
< picture >
< source srcset = "/images/logo/wide_logo.svg" type = "image/svg+xml" >
< source media = "(max-height: 739px)" srcset = "/images/logo/logo-full-200.png" type = "image/png" >
< source srcset = "/images/logo/logo-full-250.png" type = "image/png" >
< img class = "titleimg" src = "/images/logo/logo-full-250.png" alt = "OwlBoard Logo" >
< / picture >
< h2 > Settings< / h2 >
< p > Any settings you apply will only apply to the device you are using now.< / 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 >
< input type = "text" maxlength = "3" id = "ql10" name = "ql10" autocomplete = "off" class = "small-lookup-box" >
< input type = "text" maxlength = "3" id = "ql11" name = "ql11" autocomplete = "off" class = "small-lookup-box" > < br >
< button onclick = "setQl()" class = "lookup-button" > Apply< / button >
< button onclick = "clearQl()" class = "lookup-button" > Defaults< / button >
2023-04-05 13:57:28 +01:00
< br > < br > < br >
2023-04-07 23:03:50 +01:00
< label > Register for Rail Staff Version:< / label >
2023-04-05 13:57:28 +01:00
< p id = "reg_text" > Enter your work email address:< / p >
< input type = "text" maxlength = "128" id = "eml" name = "eml" autocomplete = "email" class = "lookup-box" placeholder = "Not yet available" > < br >
< p > Once you've registered you will receive an email with a link to create your access key.< / p >
2023-04-07 23:03:50 +01:00
< p > Your email address is not stored by OwlBoard, accounts do not contain any identifying information and are automatically removed after three months of inactivity.< / p >
< p > You can use the same email address again on multiple devices.< / p >
2023-04-05 13:57:28 +01:00
< button onclick = "register()" class = "lookup-button" id = "reg_button" > Register< / button >
2023-02-09 20:29:07 +00:00
< / body >
< / html >