diff options
author | Marvin Borner | 2020-07-09 22:33:43 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-09 22:33:43 +0200 |
commit | 1edfdf5f3a316a36108a0a853b0a2553d116d6fc (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/main/resources/views/login.rocker.html | |
parent | 18edde9bd3603f3f867cebce100e7b22be9012cd (diff) |
Rewriiiiiiiiiite!
Okay, okay. I know, rewriting projects all the time is dumb.
Buuut, we really don't want to work with our old and ugly code anymore.
Furthermore we'll be using Deno now!
Diffstat (limited to 'src/main/resources/views/login.rocker.html')
-rw-r--r-- | src/main/resources/views/login.rocker.html | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/main/resources/views/login.rocker.html b/src/main/resources/views/login.rocker.html deleted file mode 100644 index b811025..0000000 --- a/src/main/resources/views/login.rocker.html +++ /dev/null @@ -1,44 +0,0 @@ -@import io.javalin.* -@args (String message, Integer counter, Context ctx) - -@js => { -<script>const counter = @counter;</script> -<script src="/js/login.js"></script> -} - -@layout.template("Login", ctx, RockerContent.NONE, js) -> { -<div class="navigation"> - <h3> - <a href="/"><i class="icon ion-md-home"></i></a> - <a href="">Login</a> - </h3> -</div> -<div class="flex"> - <h1>Login</h1> - - <form action="/user/login" method="post"> - <div> - <label for="username">Username:</label> - <input autocomplete="off" autofocus id="username" name="username" required type="text"/> - </div> - <div> - <label for="password">Password:</label> - <input id="password" name="password" required type="password"/> - </div> - - <div> - @if(message.length() > 0) { - <small>@message</small> - } - - @if(counter > 0) { - <small id="tryAgain">Please try again in <span id="counter">@counter</span> seconds.</small> - } - </div> - - <div> - <button type="submit">Login</button> - </div> - </form> -</div> -} |