blob: c89eef33eeaff51e764c09faa4ce6635ccd924f0 (
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
38
39
40
|
@import io.javalin.*
@args (String username, String token, String message, Context ctx)
@layout.template("Register", ctx, RockerContent.NONE, RockerContent.NONE) -> {
<div class="navigation">
<h3>
<a href="/"><i class="icon ion-md-home"></i></a>
<a href="">Register</a>
</h3>
</div>
<div class="flex">
<h1>Register</h1>
<form action="/user/register" method="post">
<h3>Please set a password for user "@username"</h3>
<div>
<input hidden name="username" type="text" value="@username"/>
<input hidden name="token" type="text" value="@token"/>
</div>
<div>
<label for="password">Password:</label>
<input autocomplete="off" autofocus id="password" minlength="8" name="password" required type="password"/>
</div>
<div>
<label for="verifyPassword">Verify password:</label>
<input autocomplete="off" id="verifyPassword" minlength="8" name="verifyPassword" required type="password"/>
</div>
<div>
@if (message.length() > 0) {
<small>@message</small>
}
</div>
<div>
<button type="submit">Register</button>
</div>
</form>
</div>
}
|