2024-04-26 21:12:56 +01:00
<!DOCTYPE html>
2024-04-29 01:45:22 +01:00
< html lang = "en" >
2024-04-26 21:12:56 +01:00
< head >
2024-04-29 01:45:22 +01:00
< title > Signup - Burgerauth< / title >
2024-04-26 21:12:56 +01:00
< 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" >
2024-04-29 01:45:22 +01:00
< link rel = "stylesheet" type = "text/css" href = "/static/css/style.css" / >
< script src = "/static/js/hash-wasm.js" > < / script >
< link rel = "icon" href = "/static/svg/favicon.svg" >
2024-04-26 21:12:56 +01:00
< / head >
< body >
< p class = "credit" > Image by perga (@pergagreen on discord)< / p >
2024-05-09 17:27:47 +01:00
< p style = "display: none;" id = "passthrough" > {{ .unique_token }}< / p >
2024-04-29 01:45:22 +01:00
< img src = "/static/img/background.jpg" class = "background" alt = "" >
2024-04-26 21:12:56 +01:00
< div class = "inoutdiv" >
< h2 class = "w300" > Signup< / h2 >
< p > Signup for an account< / p >
< p id = "statusBox" > < / p >
< input id = "usernameBox" type = "text" placeholder = "Username" >
2024-05-09 17:27:47 +01:00
< input id = "passwordBox" type = "password" placeholder = "Password" >
< img src = "data:image/png;base64,{{ .captcha_image }}" alt = "Captcha" >
< input id = "captchaBox" type = "text" placeholder = "Captcha" >
< br >
2024-04-26 21:12:56 +01:00
< button id = "signupButton" > Signup< / button > < br > < br >
2024-04-29 01:45:22 +01:00
< p > Already have an account? If so, < a href = "/login" id = "loginButton" > Login< / a > instead!< / p >
2024-04-26 21:12:56 +01:00
< p > Please note that it's impossible to reset your password, do not forget it!< / p >
2024-05-16 13:11:11 +01:00
< a href = "https://centrifuge.hectabit.org/Paperwork/Burgerauth/src/commit/8c000d15b7641a1acf51ec8ad9610b701f4d3ce3/Privacy.md" id = "privacyButton" > Privacy & Terms< / a >
2024-04-26 21:12:56 +01:00
< / div >
< script type = "text/javascript" src = "../static/js/signup.js" > < / script >
< / body >