aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/views/index.rocker.html
blob: ee681f8488b531d868696c3bc14c234150e2b194 (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
@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">
        @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>
}