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>
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
<title>Signup - {{ .identifier }}</title>
|
2024-07-26 19:25:41 +01:00
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
2024-04-26 21:12:56 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
2024-04-29 01:45:22 +01:00
|
|
|
<link rel="icon" href="/static/svg/favicon.svg">
|
2024-07-26 19:25:41 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/css/style.css"/>
|
|
|
|
<script src="/static/js/hash-wasm.js"></script>
|
|
|
|
<script src="/static/js/wasm_exec.js"></script>
|
2024-04-26 21:12:56 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2024-05-09 17:27:47 +01:00
|
|
|
<p style="display: none;" id="passthrough">{{ .unique_token }}</p>
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
<img src="/static/img/background.png" class="background" alt="">
|
2024-04-26 21:12:56 +01:00
|
|
|
<div class="inoutdiv">
|
|
|
|
<h2 class="w300">Signup</h2>
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
<p>Signup to {{ .identifier }}!</p>
|
2024-04-26 21:12:56 +01:00
|
|
|
<p id="statusBox"></p>
|
2024-07-26 19:25:41 +01:00
|
|
|
<table id="inputContainer">
|
|
|
|
<tr>
|
|
|
|
<td><span id="inputNameBox">Username:</span></td>
|
|
|
|
<td class="inputBox"><input id="usernameBox" type="text" placeholder="Username"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span id="inputPasswordBox">Password: </span></td>
|
|
|
|
<td class="inputBox"><input id="passwordBox" type="password" placeholder="Password"><br></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2024-05-09 17:27:47 +01:00
|
|
|
<br>
|
2024-07-26 19:25:41 +01:00
|
|
|
<button id="signupButton">Signup</button>
|
|
|
|
<button onclick="toLogin();" id="loginButton" class="unimportant">Login</button>
|
|
|
|
<br><br>
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
<a href="{{ .privacy }}" 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>
|