Refactor all
This commit is contained in:
parent
0ea5362e0b
commit
5d6d191a4a
11
LICENSE
Normal file
11
LICENSE
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
All Rights Reserved
|
||||||
|
|
||||||
|
Copyright (c) 2022 oko
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
5
README
Normal file
5
README
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
THIRTY EIGHT
|
||||||
|
==============================
|
||||||
|
This is the content for https://38.fail.
|
||||||
|
|
||||||
|
All Rights Reserved.
|
52
common.css
Normal file
52
common.css
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
:root {
|
||||||
|
--veriperi: #6667ab;
|
||||||
|
--sacramento: #080a0c;
|
||||||
|
--color-tertiary: #00a8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
background-color: var(--sacramento);
|
||||||
|
color: var(--veriperi);
|
||||||
|
font-family: monospace;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: auto;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: var(--veriperi);
|
||||||
|
}
|
||||||
|
/* Input */
|
||||||
|
.box {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
width: 200px;
|
||||||
|
outline: 1px solid var(--veriperi);
|
||||||
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
padding: 10px;
|
||||||
|
clear: both;
|
||||||
|
float: center;
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
font-family: monospace;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
input[type=email], input[type=password] {
|
||||||
|
background-color: var(--sacramento);
|
||||||
|
color: white;
|
||||||
|
text-align: center;
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
input[type=email]:focus, input[type=password]:focus {
|
||||||
|
border-color: var(--veriperi);
|
||||||
|
outline-style: none;
|
||||||
|
}
|
||||||
|
input[type=submit] {
|
||||||
|
background-color: var(--veriperi);
|
||||||
|
color: white;
|
||||||
|
}
|
53
index.htm
53
index.htm
|
@ -1,40 +1,37 @@
|
||||||
<html>
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<title>Thirty Eight</title>
|
<title>Thirty Eight</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link rel="stylesheet" href="common.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<pre>
|
<pre>
|
||||||
THIRTY EIGHT
|
THIRTY EIGHT
|
||||||
============
|
============
|
||||||
|
|
||||||
<a href="https://discord.gg/utgAEV2">DISCORD</a>
|
We are the Thirty Eight
|
||||||
|
theres no other team like us
|
||||||
-----------------------------------------------------------
|
the first 37 groups dissolved
|
||||||
|
|
||||||
THIRTY EIGHT is a simple game of numbers.
|
|
||||||
The goal is to get the highest score.
|
|
||||||
The game is played with a deck of cards.
|
|
||||||
The cards are shuffled and dealt to the players.
|
|
||||||
The player with the highest score wins.
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
Nont sin uspin ve,
|
|
||||||
gift ve de velum,
|
|
||||||
sin roupoge yuce fakkercaya.
|
|
||||||
Ve sin ideom de nitch fortem,
|
|
||||||
wit nop cevis,
|
|
||||||
ost nop ulvetem.
|
|
||||||
Nop ulve ost
|
|
||||||
nop tinnerulve,
|
|
||||||
wit nop kors untnitchwist.
|
|
||||||
Ve absol yu,
|
|
||||||
libertine yu,
|
|
||||||
sin roupoge yuce enohat.
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
</pre>
|
</pre>
|
||||||
|
<form>
|
||||||
|
<div class="box">
|
||||||
|
<label>
|
||||||
|
<input type="email" name="email" placeholder="USER">
|
||||||
|
<br>
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<input type="password" name="password" placeholder="PASS">
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<input type="submit" value="LOGIN"></input>
|
||||||
|
</form>
|
||||||
|
<div clas="footer">
|
||||||
|
<span>
|
||||||
|
<a href="registration.htm">» Register «</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
21
registration.htm
Normal file
21
registration.htm
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Thirty Eight</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link rel="stylesheet" href="common.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<form>
|
||||||
|
<div class="box">
|
||||||
|
<label>
|
||||||
|
<input type="email" name="email" placeholder="EMAIL">
|
||||||
|
<br>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<input type="submit" value="SUBMIT"></input>
|
||||||
|
</form>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue