{% extends "bootstrap/base.html" %} {% block title %}Key Creation{% endblock %} {% block navbar %} {% endblock navbar %}} {% block content %} {# LOGO #}
{# Display logo #}
Logo
{# Key creation #}

Key Creation

{# If the error value is set, display the error in red text #} {% if error %}
{{ error }}
{% endif %} {# If the message value is set, display the message in green text #} {% if message %}
{{ message }}
{% endif %} {# Form which takes in Admin Username, Admin Password, and the amount of keys to create. #}
{# Key count input #}
Number of keys to create.
{# Submit button #}
{# If the keys value is set, create a list for each key in keys #} {% if keys %}
    {% for key in keys %}
  • {{ key }}
  • {% endfor %}
{% endif %}
{# Activity graphs #}

Activity

{% endblock %} {% block scripts %} {% endblock scripts %}}