2023-04-22 21:46:34 +01:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" / >
2023-04-22 21:58:28 +01:00
< meta name = "description" content = "OwlBoard - Beta: Quick access to route codes for PIS Systems." / >
2023-04-22 21:46:34 +01:00
< 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/pis.css" / >
< link rel = "icon" type = "image/svg+xml" href = "./images/icon.svg" / >
< link rel = "manifest" type = "application/json" href = "./manifest.json" / >
< title > OwlBoard - PIS< / title >
< script src = "./js/lib.main.js" defer > < / script >
< script src = "./js/pis.js" defer > < / script >
< / head >
< body >
< 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 > PIS Codes< / h2 >
< div id = "loading" >
< div class = "spinner" >
< / div >
< p id = "loading_desc" > Searching< / p >
< / div >
< div id = "crs-box" >
2023-04-22 21:52:42 +01:00
< p > Enter a services start and end station CRS codes to see code options and
2023-04-22 21:46:34 +01:00
stopping patterns.< / p >
< p > Currently supported (Beta): GWR Bristol Metro region only.< / p >
2023-04-25 21:13:05 +01:00
< p id = "auth-required" > You will need to be logged into a free < a href = "./settings.html" > rail staff version< / a > account for this feature once it has finished testing.< / p >
2023-04-22 21:46:34 +01:00
< label for = "origin" > Origin:< / label > < br >
< input type = "text" class = "small-lookup-box" id = "origin" name = "origin" maxlength = "3" > < br > < br >
< label for = "destination" > Destination:< / label > < br >
< input type = "text" class = "small-lookup-box" id = "destination" name = "destination" maxlength = "3" > < br > < br >
< input type = "submit" value = "Find" class = "lookup-button" onclick = "findByOrigDest()" >
< / div >
< div id = "result-box" >
2023-04-22 22:44:32 +01:00
< h3 > Results: < span id = "result-count" > 0< / span > < / h3 >
2023-04-22 21:46:34 +01:00
<!-- display: none; by default, some kind of box which shows each code
and destination individually with a previous and next arrow. -->
< / div >
< button id = "reset" class = "lookup-button" onclick = "reset()" > Reset< / button >
<!-- Footer -->
< footer >
2023-04-28 13:52:26 +01:00
< p > Created by < a href = "https://fredboniface.co.uk" target = "_blank" rel = "noreferrer noopener" > Fred Boniface< / a > - < span id = "ver_str" > d< / span > < / p >
2023-04-22 21:46:34 +01:00
< / footer >
< / body >
< / html >