blob: 2e1b9dd1cf52ab31912fa7a63bf15c4afac35311 (
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
|
@import space.anity.DatabaseController
@import space.anity.UserHandler
@import io.javalin.*
@args (String username, Context ctx)
@css => {
<link href="/css/index.css" rel="stylesheet">
}
@js => {
<script src="/js/index.js"></script>
}
@layout.template("Index", ctx, css, js) -> {
<div class="flex">
@if (username.length() > 0) {
<button class="toggle" id="toggle">Dark theme</button>
}
<h1>Welcome to Kloud<span class="username">@(username == "" ? "" : " " + username)</span>!</h1>
<div>
@if(username.length() > 0) {
<a class="button" href="/user/logout">Logout</a>
@if((new UserHandler()).isAdmin(username)) {
<a class="button" href="/admin">Admin</a>
}
} else if (!(new DatabaseController()).isSetup()) {
<a class="button" href="/setup">Setup</a>
} else {
<a class="button" href="/user/login">Login</a>
}
<a class="button" href="/files/">Files</a>
</div>
</div>
}
|