69 lines
1.9 KiB
HTML
69 lines
1.9 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<title>Account Registration</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Registration at Laid-Back Systems</h1>
|
|
<p>
|
|
Hi there! <br>
|
|
Fill out this form and we'll get back to you with your account information <br>
|
|
Please give the team 24 to 48 hours.
|
|
</p>
|
|
<form action="/submit" method="POST" enctype="multipart/form-data">
|
|
<p>
|
|
Username
|
|
</p>
|
|
<input type="text" id="username" required="true" pattern="[a-z][a-z0-9]{1,}$" placeholder="john_smith"/>
|
|
<b>
|
|
@laidback.moe
|
|
</b>
|
|
<p>
|
|
Payment method
|
|
</p>
|
|
<input type="text" id="payment" placeholder="XMR" required="true" />
|
|
<p>
|
|
<small>
|
|
(supported: BTC, ETH, LTC, XMR)
|
|
<br>
|
|
<i>case insensitive</i>
|
|
</small>
|
|
</p>
|
|
<p>
|
|
E-mail address
|
|
</p>
|
|
<input type="email" id="email" placeholder="user@example.net" required="true" />
|
|
<p>
|
|
<small>
|
|
Must be a valid e-mail address, and throwaway addresses will be rejected.
|
|
</small>
|
|
</p>
|
|
<p>
|
|
SSH public key
|
|
</p>
|
|
<textarea id="publickey" placeholder="ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK18Yj4i5xWOoRjxO7Q+/jRpmJ6uS0VZJFRTn7AT+6ao shinyoukai@madoka" required="true"></textarea>
|
|
<p>
|
|
Have you ever watched <a href="https://yurucamp.tv">Laid-Back Camp</a>?
|
|
<br>
|
|
If so, can you name the teacher who has a fondness of alcohol?
|
|
</p>
|
|
<input type="text" id="drunk_teacher" required="true" />
|
|
<br>
|
|
<p>
|
|
By submitting this form, you have acknowledged the <a href="https://docs.laidback.moe/terms">terms of service</a> and <a href="https://docs.laidback.moe/privacy">privacy policy</a>
|
|
</p>
|
|
<input type="submit" value="Submit"/>
|
|
</form>
|
|
<br>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|