mirror of
https://github.com/MaciejkaG/statki.git
synced 2024-11-30 06:42:56 +01:00
39 lines
854 B
Handlebars
39 lines
854 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>{{ t 'error.Error' }}</h2>
|
|
<div class="modes">
|
|
<div>
|
|
<p>{{ error }}</p>
|
|
<button onclick="window.location.href = '{{ fallback }}'">{{ t 'error.Return' }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |