statki/views/auth.handlebars

24 lines
728 B
Handlebars
Raw Normal View History

2024-03-13 21:40:24 +01:00
<style>
.container {
display: flex;
}
#pvpJoinView .modes div {
height: 13rem;
}
</style>
<div class="container" id="pvpJoinView">
<div>
<h1>Statki</h1>
2024-03-27 15:51:33 +01:00
<h2>{{ t 'auth.Authorisation' }}</h2>
2024-03-13 21:40:24 +01:00
<div class="modes">
<div>
2024-03-27 15:51:33 +01:00
<p>{{ t 'auth.Enter the code sent to your e-mail box' }}</p>
2024-03-13 21:40:24 +01:00
<form action="/api/auth" method="post">
2024-03-27 15:51:33 +01:00
<input type="text" name="code" placeholder="{{ t 'auth.Code' }}" style="font-size: 1rem;" minlength="8" maxlength="10" autocomplete="off">
<input type="submit" value="{{ t 'auth.Login' }}">
2024-03-13 21:40:24 +01:00
</form>
</div>
</div>
</div>
</div>