Comment system for Hugo
https://labertasche.tuxstash.de/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.6 KiB
55 lines
2.6 KiB
<!DOCTYPE html>
|
|
<html lang="{{ i18n.browser_language }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes">
|
|
<meta name="description" content="labertasche comment system dashboard">
|
|
<link rel="stylesheet" href="/static/css/labertasche.css" media="screen">
|
|
<link rel="stylesheet" href="/static/css/materialdesignicons.min.css" media="screen">
|
|
<link rel="stylesheet" href="/static/css/Chart.min.css" media="screen">
|
|
<title>Labertasche {{ i18n['dashboard'] | capitalize }}</title>
|
|
</head>
|
|
<body class="is-family-sans-serif" data-language="{{ i18n['browser_language'] }}">
|
|
<section class="hero bg-yayellow is-fullheight">
|
|
<div class="hero-head">
|
|
<a target="_blank" href="https://github.com/domeniko-gentner/labertasche" rel="noopener nofollow noreferrer"
|
|
class="button is-info is-inverted is-medium ml-1 mt-1 my-shadow-subtle">
|
|
<span class="icon mr-2">
|
|
<i class="mdi mdi-36px mdi-github"></i>
|
|
</span>
|
|
<span>Github</span>
|
|
</a>
|
|
</div>
|
|
<div class="hero-body has-text-black">
|
|
<div class="container has-text-centered">
|
|
<p class="title">Labertasche {{ i18n['login'] | capitalize }}</p>
|
|
<!--suppress HtmlUnknownTarget -->
|
|
<form method="POST" action="/login">
|
|
<div class="field">
|
|
<div class="control is-expanded has-icons-left">
|
|
<label for="username" class="help has-text-left has-text-black">
|
|
<input class="input" name="username" type="text" placeholder="{{ i18n['username'] | capitalize }}">
|
|
</label>
|
|
<span class="icon is-small is-left">
|
|
<span class="mdi mdi-24px mdi-shield-account"></span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="field">
|
|
<div class="control is-expanded has-icons-left">
|
|
<label for="password">
|
|
<input class="input" name="password" type="password" placeholder="{{ i18n['password'] | capitalize }}">
|
|
</label>
|
|
<span class="icon is-small is-left">
|
|
<span class="mdi mdi-24px mdi-shield-key"></span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<input hidden type="submit">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="hero-foot"></div>
|
|
</section>
|
|
</body>
|
|
</html>
|
|
|