-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.html
27 lines (26 loc) · 1.49 KB
/
auth.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends 'base.html' %}
{% block t %} Вход в АИС ФССП {% endblock %}
{% block body %}
<div class="container col-xl-10 col-xxl-8 px-4 py-5">
<div class="row align-items-center g-lg-5 py-5">
<div class="col-lg-7 text-center text-lg-start">
<h1 class="display-4 fw-bold lh-1 mb-3">АИС ФССП </h1>
<p class="col-lg-10 fs-4">Автоматизированная информационная система Федеральной службы судебных приставов поможет оптимизировать процессы взыскания долгов.</p>
</div>
<div class="col-md-10 mx-auto col-lg-5">
<form class="p-4 p-md-5 border rounded-3 bg-light" method="post">
<div class="form-floating mb-3">
<input type="login" class="form-control" id="floatingInput" name="floatingInput" placeholder="[email protected]">
<label for="floatingInput">Логин</label>
</div>
<div class="form-floating mb-3">
<input type="password" class="form-control" id="floatingPassword" name="floatingPassword" placeholder="Password">
<label for="floatingPassword">Пароль</label>
</div>
<button class="w-100 btn btn-lg btn-primary" type="submit">Войти</button>
<hr class="my-4">
<small class="text-muted">Для использования системы необходимо авторизироваться</small>
</form>
</div>
</div>
{% endblock %}