2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<meta name="description" content="Sign in to {{'SITE_NAME' | app_config}}">
|
|
|
|
<meta name="author" content="">
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
<title>Login - {{'SITE_NAME' | app_config}}</title>
|
|
|
|
{% endblock %}
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap" rel="stylesheet">
|
|
|
|
|
|
|
|
<style>:root{--primary:#{{'DEFAULT_COLOR' | app_config}}</style>
|
|
|
|
<link rel="stylesheet" href="/assets/css/main.css?v=70"><link rel="stylesheet" href="/assets/css/{{'DEFAULT_THEME' | app_config}}.css?v=70">
|
|
|
|
<link href="/assets/css/fa.css?v=52" rel="stylesheet">
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body id="login">
|
|
|
|
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent fixed-top border-0">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<button class="navbar-toggler d-none" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive"
|
|
|
|
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="container-fluid position-absolute h-100 p-0 overflow-auto">
|
|
|
|
<div class="row no-gutters h-100">
|
|
|
|
|
|
|
|
<div class="col-12 col-md-6 my-auto p-3">
|
|
|
|
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
|
|
|
|
<div class="col-10 col-md-7">
|
|
|
|
|
|
|
|
<div class="mb-5">
|
|
|
|
<a href="/" class="text-decoration-none"><span class="h3 text-primary">{{'SITE_NAME' | app_config}}</span></a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div id="login-form" class="">
|
|
|
|
|
|
|
|
<h1 class="h2">Welcome back.</h1>
|
|
|
|
|
|
|
|
<p class="text-muted mb-md-5">Glad to have you back!</p>
|
|
|
|
|
|
|
|
{% if failed %}
|
|
|
|
<div class="alert alert-danger alert-dismissible fade show d-flex my-3" role="alert">
|
|
|
|
<i class="fas fa-exclamation-circle my-auto"></i>
|
|
|
|
<div>
|
|
|
|
Incorrect username, email address, or password.
|
|
|
|
<br>
|
|
|
|
<a href="/forgot" class="alert-link">Forgot password?</a>
|
|
|
|
</div>
|
|
|
|
<button type="button" class="close" data-bs-dismiss="alert" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<form action="/login" method="post" class="mt-md-3" id="login">
|
|
|
|
|
|
|
|
<label for="username" class="mt-3">Username or Email Address</label>
|
|
|
|
|
|
|
|
<input class="form-control" id="username" aria-describedby="usernameHelp"
|
|
|
|
type="text" name="username" required="">
|
|
|
|
<input type="hidden" name="redirect" value="{{redirect}}">
|
|
|
|
|
|
|
|
<label for="password" class="mt-3">Password</label>
|
|
|
|
|
|
|
|
<input class="form-control" id="password" aria-describedby="passwordHelp"
|
|
|
|
type="password" name="password" required="">
|
|
|
|
|
|
|
|
|
|
|
|
<small><a href="/forgot">Forgot password?</a></small>
|
|
|
|
|
|
|
|
<button class="btn btn-primary login w-100 mt-3" id="login_button">Sign in</button>
|
|
|
|
|
|
|
|
<div class="text-center text-muted text-small mt-5 mb-3">
|
|
|
|
Don't have an account? <a href="/signup{{'?redirect='+redirect if redirect else ''}}" class="font-weight-bold toggle-login">Sign up</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-12 col-md-6 d-none d-md-block">
|
|
|
|
|
|
|
|
<div class="splash-wrapper">
|
|
|
|
|
|
|
|
<div class="splash-overlay"></div>
|
|
|
|
|
2021-11-15 22:49:48 +00:00
|
|
|
<img loading="lazy" class="splash-img" src="/assets/images/{{'SITE_NAME' | app_config}}/cover.webp?v=1"></img>
|
2021-10-15 14:08:27 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-12-04 22:36:53 +00:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"></script>
|
2021-11-30 17:32:52 +00:00
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|