27 lines
984 B
HTML
27 lines
984 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
|
<link rel="stylesheet" href="../static/css/styles.css">
|
||
|
<script src="../static/js/wasm_exec.js"></script>
|
||
|
<title>Invited to LChat!</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p id="inviteCheck">Verifying your invite...</p>
|
||
|
<div class="container hide" id="container">
|
||
|
<h1>You have been invited to LChat!</h1>
|
||
|
<p id="status">Please enter your brand-new login details below:</p>
|
||
|
<!--suppress HtmlFormInputWithoutLabel -->
|
||
|
<input type="text" id="username" placeholder="Username">
|
||
|
<!--suppress HtmlFormInputWithoutLabel -->
|
||
|
<input type="password" id="password" placeholder="Password">
|
||
|
<button id="signup">Let's go!</button>
|
||
|
<p>Note, this won't work if your invite expired 😅</p>
|
||
|
</div>
|
||
|
<script>
|
||
|
loadWasm("../static/wasm/signup.wasm")
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|