labertasche/templates/login.html
Domeniko Gentner ad8f68cdd8 Projects Update
* Conversion script to new configuration layout. This is to prevent from secrets being loaded into memory aside from when they are needed.
* Updated code throughout the project to account for the new methods.
* New classes and code for new configuration layout
* New Javascript for backend to control all the dialogues
* Moved modals to separate files
* Smaller database model update
* Removed redundant code
* Added database upgrade path via the dashboard
* Admin password is now properly hashed
* You can now export all locations manually in event of an error
2020-12-22 00:09:19 +01:00

58 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<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 Dashboard</title>
</head>
<body>
<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">
<span class="icon mr-2">
<i class="mdi mdi-36px mdi-github"></i>
</span>
<span>Download</span>
</a>
</div>
<div class="hero-body has-text-black">
<div class="container has-text-centered">
<p class="title">Labertasche Login</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="username">
</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="password">
</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>