はじまるよ。
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
*~
|
||||||
14
LICENSE
Normal file
14
LICENSE
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
Minazuki License v1.1
|
||||||
|
|
||||||
|
Copyright (c) 2026 Yakumo Laboratories
|
||||||
|
|
||||||
|
You can do as you please with this software so long as you
|
||||||
|
keep this notice intact and make no false claims about the
|
||||||
|
ownership of this software.
|
||||||
|
|
||||||
|
Should you believe this is useful to you, feel free to reach out
|
||||||
|
the author(s) via any of the available contact methods.
|
||||||
|
|
||||||
|
There is no express and/or implied warranties whatsoever, this
|
||||||
|
software is distributed "as is", and the author(s) shall not be
|
||||||
|
held liable under any circumstances.
|
||||||
5
README.md
Normal file
5
README.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# account.laidback.moe
|
||||||
|
Registration form for [Laid-Back Systems](https://laidback.moe), this is only the user-facing side.
|
||||||
|
|
||||||
|
## Fonts used
|
||||||
|
* [Umefont](http://osdn.jp/projects/ume-font/wiki/FrontPage) (M+ Font License)
|
||||||
29
css/style.css
Normal file
29
css/style.css
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: 'Ume UI Gothic';
|
||||||
|
src: url('/fonts/ume-ugo5.ttf') format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-image: url('/img/bg.gif');
|
||||||
|
font-family: 'Ume UI Gothic';
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
border: 5px #FFDA69 outset;
|
||||||
|
color: white;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:hover, a:visited {
|
||||||
|
color: #FFDA69;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#email, #payment, #username {
|
||||||
|
border: 2px #FFDA69 solid;
|
||||||
|
width: 32ch;
|
||||||
|
}
|
||||||
|
#publickey {
|
||||||
|
border: 2px #FFDA69 solid;
|
||||||
|
width: 64ch;
|
||||||
|
}
|
||||||
BIN
fonts/ume-ugo5.ttf
Normal file
BIN
fonts/ume-ugo5.ttf
Normal file
Binary file not shown.
BIN
img/bg.gif
Normal file
BIN
img/bg.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.0 MiB |
BIN
img/bg.jpg
Normal file
BIN
img/bg.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 197 KiB |
68
index.html
Normal file
68
index.html
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
<!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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user