statki/views/error.handlebars

39 lines
854 B
Handlebars
Raw Normal View History

<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>
2024-03-27 15:51:33 +01:00
<h2>{{ t 'error.Error' }}</h2>
<div class="modes">
<div>
<p>{{ error }}</p>
2024-03-27 15:51:33 +01:00
<button onclick="window.location.href = '{{ fallback }}'">{{ t 'error.Return' }}</button>
</div>
</div>
</div>
</div>