db2cef41bb
Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
897 B
HTML
23 lines
897 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Пароль папки — {{ folder.name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="auth-section">
|
|
<div class="container auth-container">
|
|
<div class="auth-card">
|
|
<h1 class="auth-card__title">Папка «{{ folder.name }}»</h1>
|
|
<p class="auth-card__subtitle">Введите пароль для доступа</p>
|
|
{% include "partials/alerts.html" %}
|
|
<form method="post" class="auth-form">
|
|
<div class="form-group">
|
|
<label for="password">Пароль папки</label>
|
|
<input type="password" id="password" name="password" required>
|
|
</div>
|
|
<button type="submit" class="btn btn--primary btn--full">Открыть</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|