This repository has been archived on 2024-10-24 . You can view files and clone it, but cannot push or open issues or pull requests.
2024-02-26 19:20:46 +00:00
<!DOCTYPE html>
< html >
< head >
< title > Login - Burgernotes< / title >
< meta charset = "UTF-8" / >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1" >
< link rel = "stylesheet" type = "text/css" href = "../static/css/style.css" / >
< script src = "../static/js/hash-wasm.js" > < / script >
< / head >
< body >
< div class = "inoutdiv" >
< h2 class = "w300" > Login< / h2 >
< p id = "statusBox" > < / p >
< span id = "inputNameBox" style = "margin-right: 10px;color: var(--text-color);" > < / span > < input id = "usernameBox" class = "hidden" type = "text" placeholder = "Enter your username" >
< input id = "passwordBox" class = "hidden" type = "password" placeholder = "Enter your password" >
< button id = "signupButton" > Next< / button >
< button id = "backButton" class = "hidden" > Back< / button > < br > < br >
< p > Don't have an account? If so, < a href = "../signup/index.html" > Create one here!< / a > < / p >
2024-02-27 20:04:26 +00:00
< a href = "../privacy/index.html" > Privacy & Terms< / a >
2024-02-26 19:20:46 +00:00
< / div >
< script type = "text/javascript" src = "../static/js/login.js" > < / script >
< / body >