blob: a8b06be438d7ac07ad9a43c4d9637de3600b0e81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
@args (String message, Integer counter)
@js => {
<script>const counter = @counter;</script>
<script src="/js/login.js"></script>
}
@layout.template("Login", RockerContent.NONE, js) -> {
<div class="flex">
<h1>Login</h1>
<form action="/user/login" method="post">
<div>
<label for="username">Username:</label>
<input autocomplete="off" autofocus id="username" name="username" required type="text"/>
</div>
<div>
<label for="password">Password:</label>
<input id="password" name="password" required type="password"/>
</div>
<div>
@if(message.length() > 0) {
<small>@message</small>
}
@if(counter > 0) {
<small id="tryAgain">Please try again in <span id="counter">@counter</span> seconds.</small>
}
</div>
<div>
<button type="submit">Login</button>
</div>
</form>
</div>
}
|