Working on pages

This commit is contained in:
Profitroll 2023-01-12 16:21:33 +01:00
parent 29ef2cfe2b
commit 7a477876e0
3 changed files with 67 additions and 7 deletions

View File

@ -9,21 +9,23 @@
<body>
<!-- partial:index.partial.html -->
<form class="registration" method="post">
<iframe name="hiddenFrame" width="0" height="0" border="0" style="display: none;"></iframe>
<form class="registration" method="post" action="/users" enctype="application/x-www-form-urlencoded" target="hiddenFrame">
<h1>👋 Welcome!</h1>
<label class="matter-textfield-outlined">
<input placeholder=" " type="text" alt="You won't be able to change it later!" required>
<input placeholder=" " type="text" alt="You won't be able to change it later!" id="user" name="user" required>
<span>Username</span>
</label>
<label class="matter-textfield-outlined">
<input placeholder=" " type="email" required>
<input placeholder=" " type="email" id="email" name="email" required>
<span>Email</span>
</label>
<label class="matter-textfield-outlined">
<input placeholder=" " type="password" required>
<input placeholder=" " type="password" id="password" name="password" required>
<span>Password</span>
</label>
@ -32,11 +34,14 @@
<span>I agree to the <a href="https://codepen.io/collection/nZKBZe/" target="_blank" title="Actually not a Terms of Service">Terms of Service</a></span>
</label>
<button class="matter-button-contained" type="submit">Sign Up</button>
<center><a class="matter-button-contained" href="https://photos.end-play.xyz/register" type="submit" value="Submit">Sign Up</a></center>
<!-- <button class="matter-button-contained" type="submit" value="Submit">Sign Up</button> -->
<div class="done">
<h1>👌 You're all set!</h1>
<a class="matter-button-text" href="javascript:window.location.reload(true)">Again</a>
<p>You should now receive an email with activation link.</p>
<p>Activate your account and proceed to docs if you'd like to learn how to use API now.</p>
<a class="matter-button-text" href="/docs">Docs</a>
</div>
<div class="progress">
<progress class="matter-progress-circular" />

View File

@ -3,4 +3,5 @@ var form = document.querySelector('form');
form.onsubmit = function (event) {
event.preventDefault();
form.classList.add('signed');
form.submit();
};

View File

@ -61,6 +61,9 @@ button {
justify-content: center;
background-color: white;
visibility: hidden;
padding-left: 40px;
padding-right: 40px;
text-align: center;
}
.done {
@ -81,7 +84,7 @@ button {
}
.signed > .progress {
animation: loading 4s;
animation: loading 3s;
}
@keyframes loading {
@ -135,4 +138,55 @@ button {
.left-footer > a:hover,
.right-footer > a:hover {
text-decoration: underline;
}
@media only screen and (max-width: 980px) {
.registration {
width: 90%;
height: auto;
position: fixed;
border-radius: none;
padding: auto;
box-shadow: none;
overflow: visible;
}
body {
background: none;
min-height: 85vh;
}
p {
font-size: 36px;
}
.registration h1 {
font-size: 64px;
}
.matter-button-contained {
padding-top: 0.5em;
padding-bottom: 1.3em;
padding-left: 0.65em;
padding-right: 0.65em;
border-radius: 7px;
}
.matter-button-text {
padding-top: 0.4em;
padding-bottom: 1.3em;
padding-left: 0.65em;
padding-right: 0.65em;
border-radius: 7px;
}
a.matter-button-contained {
font-size: 3.2em;
}
a.matter-button-text {
font-size: 2.6em;
}
}