mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
55 lines
1.8 KiB
HTML
55 lines
1.8 KiB
HTML
<!doctype html>
|
|
|
|
{% load static %}
|
|
|
|
<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="">
|
|
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
|
|
<meta name="generator" content="Jekyll v4.1.1">
|
|
<title>Paperless Sign In</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="{% static 'bootstrap.min.css' %}" rel="stylesheet">
|
|
|
|
<style>
|
|
.bd-placeholder-img {
|
|
font-size: 1.125rem;
|
|
text-anchor: middle;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.bd-placeholder-img-lg {
|
|
font-size: 3.5rem;
|
|
}
|
|
}
|
|
</style>
|
|
<!-- Custom styles for this template -->
|
|
<link href="{% static 'signin.css' %}" rel="stylesheet">
|
|
</head>
|
|
|
|
<body class="text-center">
|
|
<form class="form-signin" method="post">
|
|
{% csrf_token %}
|
|
<img class="mb-4" src="{% static 'frontend/assets/logo.svg' %}" alt="" width="300">
|
|
<p>Please sign in.</p>
|
|
{% if form.errors %}
|
|
<div class="alert alert-danger" role="alert">
|
|
Your username and password didn't match. Please try again.
|
|
</div>
|
|
{% endif %}
|
|
<label for="inputUsername" class="sr-only">Username</label>
|
|
<input type="text" name="username" id="inputUsername" class="form-control" placeholder="Username" required autofocus>
|
|
<label for="inputPassword" class="sr-only">Password</label>
|
|
<input type="password" name="password" id="inputPassword" class="form-control" placeholder="Password" required>
|
|
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
|
|
</form>
|
|
</body>
|
|
</html>
|