blob: aa4fff65332199645e9643a537461dfbfc5c0771 (
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
|
@import io.javalin.*
@args (String message, Context ctx)
@layout.template("Index", ctx, RockerContent.NONE, RockerContent.NONE) -> {
<div class="navigation">
<h3>
<a href="/"><i class="icon ion-md-home"></i></a>
<a href="">Admin</a>
</h3>
</div>
<div class="flex">
<div>
<h1>Add new user</h1>
<form action="/user/add" method="post">
<label for="username">Username:</label>
<input autocomplete="off" autofocus id="username" name="username" required type="text"/>
<button type="submit">Generate</button>
</form>
</div>
<div>
@if (message.length() > 0) {
<small>@message</small>
}
</div>
</div>
}
|