statki/views/setup.handlebars

24 lines
706 B
Handlebars
Raw Normal View History

2024-01-08 16:53:12 +01:00
<style>
.container {
display: flex;
}
2024-03-13 21:40:24 +01:00
#pvpJoinView .modes div {
height: 11rem;
}
2024-01-08 16:53:12 +01:00
</style>
<div class="container" id="pvpJoinView">
<div>
<h1>Statki</h1>
2024-03-27 15:51:33 +01:00
<h2>{{ t 'setup.Profile setup' }}</h2>
2024-01-08 16:53:12 +01:00
<div class="modes">
<div>
2024-03-27 15:51:33 +01:00
<p>{{ t 'setup.Your nickname will be visible to other players' }}</p>
2024-03-13 21:40:24 +01:00
<form action="/api/nickname" method="post">
2024-03-27 15:51:33 +01:00
<input type="text" name="nickname" placeholder="{{ t 'setup.Nickname' }}" style="font-size: 1rem;">
<input type="submit" value="{{ t 'setup.Confirm' }}">
2024-01-08 16:53:12 +01:00
</form>
</div>
</div>
</div>
</div>