csp roi calculator

This commit is contained in:
Tobias Brunner 2025-07-16 15:12:25 +02:00
parent a4ff21cc35
commit 545b49ecd2
Signed by: tobru
SSH key fingerprint: SHA256:kOXg1R6c11XW3/Pt9dbLdQvOJGFAy+B2K6v6PtRWBGQ
5 changed files with 1358 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{% extends 'base.html' %}
{% load static %}
{% block title %}Authentication Required{% endblock %}
{% block content %}
<div class="container my-5">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4">
<div class="card shadow">
<div class="card-body">
<div class="text-center mb-4">
<i class="bi bi-shield-lock text-primary" style="font-size: 3rem;"></i>
<h2 class="h4 mt-3">Authentication Required</h2>
<p class="text-muted">Please enter the password to access the CSP ROI Calculator</p>
</div>
{% if messages %}
{% for message in messages %}
<div class="alert alert-danger" role="alert">
{{ message }}
</div>
{% endfor %}
{% endif %}
<form method="post">
{% csrf_token %}
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<button type="submit" class="btn btn-primary w-100">Access Calculator</button>
</form>
</div>
</div>
</div>
</div>
</div>
{% endblock %}