Files
NoN-Site/nonpacks/templates/landing/gate.html
T
2026-08-05 11:38:05 -05:00

25 lines
741 B
HTML

{% extends 'base.html' %}
{% load static %}
{% block title %}Restricted - Packs Site{% endblock %}
{% block content %}
<div class="gate-main">
<div class="gate-card">
<img src="{% static 'stop-it.gif' %}" alt="Stop" height="256">
<h1>Restricted Access</h1>
<p>This site is private. Enter the master password to continue.</p>
{% if error %}
<p class="gate-error">{{ error }}</p>
{% endif %}
<form method="post" action="{% url 'landing:gate' %}">
{% csrf_token %}
<input type="password" name="password" placeholder="Master password" autofocus required>
<button type="submit">Enter</button>
</form>
</div>
</div>
{% endblock %}