blob: 7c9f46ce77920a5c4898cd0de7f5ae5bbf0ea9b6 (
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
41
42
43
44
45
46
47
48
|
@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="navigation">
<h3>
<a href="/"><i class="icon ion-md-home"></i></a>
</h3>
</div>
<div class="flex">
@if (username.length() > 0) {
<button class="toggle" id="toggle">
@if((new DatabaseController()).isDarkTheme((new UserHandler()).getVerifiedUserId(ctx))) {
Light theme
} else {
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>
}
|