Update mfa/templates/MFA.html

This commit is contained in:
2024-02-02 16:08:06 +00:00
parent 5c799f15e9
commit 33938ac6e8

View File

@@ -42,7 +42,7 @@
{% block content %} {% block content %}
<div class="col-lg-8 col-md-8 col-12 mx-auto"> <div class="col-lg-10 col-md-10 col-12 mx-auto">
<div class="page-header min-height-300 border-radius-xl mt-4" style="background-repeat: no-repeat; background-position: cover; background-size:contain; background-image: url('{% static 'img/keys.jpg'%}');"> <div class="page-header min-height-300 border-radius-xl mt-4" style="background-repeat: no-repeat; background-position: cover; background-size:contain; background-image: url('{% static 'img/keys.jpg'%}');">
<span class="mask bg-gradient-primary opacity-6"></span> <span class="mask bg-gradient-primary opacity-6"></span>
</div> </div>
@@ -73,10 +73,9 @@
</div> </div>
</div> </div>
</div> </div>
<div> <div class="table-responsive">
<table class="table table-striped"> <table class="table table-responsive table-striped">
<tr> <tr>
<th>Type</th> <th>Type</th>
<th>Date Added</th> <th>Date Added</th>
<th>Expires On</th> <th>Expires On</th>
@@ -88,7 +87,6 @@
{% if keys %} {% if keys %}
{% for key in keys %} {% for key in keys %}
<tr> <tr>
<td>{{ key.name }}</td> <td>{{ key.name }}</td>
<td>{{ key.added_on }}</td> <td>{{ key.added_on }}</td>
<td>{% if key.expires %}{{ key.expires }}{% else %}N/A{% endif %}</td> <td>{% if key.expires %}{{ key.expires }}{% else %}N/A{% endif %}</td>