mirror of
https://github.com/Lukas0025/YAGS.git
synced 2025-04-11 18:02:12 +01:00
44 lines
1.9 KiB
HTML
44 lines
1.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
{% INCLUDE layout/head.html %}
|
|
<body class=" border-top-wide border-primary d-flex flex-column">
|
|
<div class="page page-center">
|
|
<div class="container container-tight py-4">
|
|
<div class="text-center mb-4">
|
|
<a href="." class="navbar-brand navbar-brand-autodark">
|
|
<img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
|
|
</a>
|
|
</div>
|
|
<div class="card card-md">
|
|
<div class="card-body">
|
|
<h2 class="h2 text-center mb-4">Login to your account</h2>
|
|
|
|
{% IF fail==true USE BINDINCLUDE blocks/alert-danger.html failInfo %}
|
|
|
|
<form method="post" autocomplete="off" novalidate="">
|
|
<div class="mb-3">
|
|
<label class="form-label">Username</label>
|
|
<input type="text" class="form-control {% IF fail==true USE is-invalid %}" placeholder="albert" name="username" autocomplete="off">
|
|
</div>
|
|
<div class="mb-2">
|
|
<label class="form-label">Password</label>
|
|
<div class="input-group input-group-flat">
|
|
<input type="password" class="form-control {% IF fail==true USE is-invalid %}" name="password" placeholder="Your password" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
<div class="mb-2"></div>
|
|
<div class="form-footer">
|
|
<button type="submit" class="btn btn-primary w-100">Sign in</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="text-center text-muted mt-3">
|
|
|
|
</div>
|
|
</div>
|
|
<!-- Tabler Core -->
|
|
<script src="./dist/js/tabler.min.js?1668287865" defer=""></script>
|
|
</body>
|
|
</html> |