csp roi calculator
This commit is contained in:
parent
a4ff21cc35
commit
545b49ecd2
5 changed files with 1358 additions and 0 deletions
39
hub/services/templates/calculator/password_form.html
Normal file
39
hub/services/templates/calculator/password_form.html
Normal 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue