{% extends "base.html" %} {% block header %}

HTTPD Certificates

{% endblock %} {% block content %}
{{ cert_form.csrf_token }}
{{ cert_form.httpd_key.label}}: {{ cert_form.httpd_key(class="form-control", rows=25, style='font-family: monospace;') }} {% for error in cert_form.httpd_key.errors %}

{{ error }}

{% endfor %}
{{ cert_form.httpd_crt.label}}: {{ cert_form.httpd_crt(class="form-control", rows=20, style='font-family: monospace;') }} {% for error in cert_form.httpd_crt.errors %}

{{ error }}

{% endfor %}
{% endblock %} {% block js %} {% endblock %}