client-saml/templates/index.html
2024-06-16 19:16:22 +02:00

54 lines
1.4 KiB
HTML

{% extends "base.html" %}
{% block content %}
{% if errors %}
<div class="alert alert-danger" role="alert">
<strong>Errors:</strong>
<ul class="list-unstyled">
{% for err in errors %}
<li>{{err}}</li>
{% endfor %}
</ul>
{% if error_reason %}
<span>{{error_reason}}</span>
{% endif %}
</div>
{% endif %}
{% if not_auth_warn %}
<div class="alert alert-danger" role="alert">Not authenticated</div>
{% endif %}
{% if success_slo %}
<div class="alert alert-success" role="alert">Successfully logged out</div>
{% endif %}
{% if paint_logout %}
{% if attributes %}
<p>You have the following attributes:</p>
<table class="table table-striped">
<thead>
<th>Name</th><th>Values</th>
</thead>
<tbody>
{% for attr in attributes %}
<tr><td>{{ attr.0 }}</td>
<td><ul class="list-unstyled">
{% for val in attr.1 %}
<li>{{ val }}</li>
{% endfor %}
</ul></td></tr>
{% endfor %}
</tbody>
</table>
{% else %}
<div class="alert alert-danger" role="alert">You don't have any attributes</div>
{% endif %}
<a href="?slo" class="btn btn-danger">Logout</a>
{% else %}
<a href="?sso" class="btn btn-primary">Login</a>
{% endif %}
<a href="/metadata" class="btn btn-info">Metadata</a>
{% endblock %}