2024-09-28 19:41:34 +01:00
|
|
|
<!DOCTYPE html>
|
2024-10-23 19:13:35 +01:00
|
|
|
<html lang="en" style="display: none">
|
2024-09-28 19:41:34 +01:00
|
|
|
<head>
|
|
|
|
<title>Signup - {{ .identifier }}</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="icon" href="/static/svg/favicon.svg">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/css/style.css"/>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<p style="display: none;" id="passthrough">{{ .unique_token }}</p>
|
2024-10-22 20:31:09 +01:00
|
|
|
<div class="inOutDiv">
|
2024-10-22 20:20:46 +01:00
|
|
|
<h2>Signup</h2>
|
2024-09-28 19:41:34 +01:00
|
|
|
<p>Signup to {{ .identifier }}!</p>
|
|
|
|
<p id="statusBox"></p>
|
|
|
|
<table id="inputContainer">
|
|
|
|
<tr>
|
2024-09-29 16:06:28 +01:00
|
|
|
<td><span>CAPTCHA:</span></td>
|
|
|
|
<td class="inputBox">
|
|
|
|
<div class="captchaDiv">
|
|
|
|
<button id="captchaButton">Start</button>
|
|
|
|
<div class="vAlign">
|
|
|
|
<span id="captchaStatus">Loading...</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
2024-09-28 19:41:34 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2024-09-29 16:06:28 +01:00
|
|
|
<td><span>Username:</span></td>
|
|
|
|
<td class="inputBox"><input disabled id="usernameBox" type="text" placeholder="Put your username here"><br></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span>Password: </span></td>
|
|
|
|
<td class="inputBox"><input disabled id="passwordBox" type="password" placeholder="Must be at least 8 characters"><br></td>
|
2024-09-28 19:41:34 +01:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<br>
|
2024-09-29 16:06:28 +01:00
|
|
|
<button id="signupButton" disabled>Signup</button>
|
2024-09-28 19:41:34 +01:00
|
|
|
<button id="loginButton" class="unimportant">Login</button>
|
|
|
|
<br><br>
|
|
|
|
<a href="/privacy">Privacy & Terms</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="/static/js/wasm_exec.js"></script>
|
|
|
|
<script>
|
|
|
|
loadWasm("/static/wasm/signup.wasm")
|
|
|
|
</script>
|
2024-10-22 20:20:46 +01:00
|
|
|
<div id="swipe" class="swipe"></div>
|
|
|
|
<div id="swipe-out" class="swipe-out"></div>
|
2024-09-28 19:41:34 +01:00
|
|
|
</body>
|
|
|
|
</html>
|