mirror of
https://github.com/MaciejkaG/statki.git
synced 2024-11-30 05:32:54 +01:00
3f97b240aa
- Improved e-mail display on some of the major clients that do not handle flexboxes properly (Gmail) - Added ratelimiting (with Redis store) - Sessions are now stored in Redis - Added some serious login problem display - Improved match saving into the MySQL database - Login system enhancements - Minor design improvements - Bug fixes - User security improvements
39 lines
823 B
Handlebars
39 lines
823 B
Handlebars
<style>
|
|
.container {
|
|
display: flex;
|
|
}
|
|
|
|
#pvpJoinView .modes div {
|
|
height: 13rem;
|
|
}
|
|
|
|
button {
|
|
background-color: black;
|
|
color: white;
|
|
border-radius: 15px;
|
|
border: 1px solid white;
|
|
text-align: center;
|
|
padding: 0.5rem 2rem;
|
|
outline: none;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: white;
|
|
color: black;
|
|
}
|
|
</style>
|
|
<div class="container" id="pvpJoinView">
|
|
<div>
|
|
<h1>Statki</h1>
|
|
<h2>Błąd</h2>
|
|
<div class="modes">
|
|
<div>
|
|
<p>{{ error }}</p>
|
|
<button onclick="window.location.href = '{{ fallback }}'">Wróć</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |