mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-01-09 11:55:39 +00:00
839c1ecf17
This reverts commit 35493fc218
.
53 lines
1.3 KiB
HTML
53 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}<title>PowerDNS-Admin - SAML Authentication Error</title>{% endblock %}
|
|
|
|
{% block dashboard_stat %}
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1>
|
|
SAML
|
|
<small>Error</small>
|
|
</h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="{{ url_for('dashboard.dashboard') }}"><i class="fa fa-dashboard"></i>Home</a></li>
|
|
<li>SAML</li>
|
|
</ol>
|
|
</section>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
<div class="error-page">
|
|
<div>
|
|
<h1 class="headline text-yellow" style="font-size:46px;">
|
|
SAML Authentication Error
|
|
</h1>
|
|
</div>
|
|
<br/>
|
|
<br/>
|
|
<div class="error-content">
|
|
<h3>
|
|
<i class="fa-solid fa-exclamation-triangle text-yellow"></i>
|
|
Oops! Something went wrong
|
|
</h3>
|
|
<br>
|
|
<p>
|
|
Login failed.
|
|
<br>
|
|
Error(s) when processing SAML Response:
|
|
<br>
|
|
<ul>
|
|
{% for error in errors %}
|
|
<li>{{ error }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
You may <a href="{{ url_for('dashboard.dashboard') }}">return to the dashboard</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<!-- /.error-page -->
|
|
</section>
|
|
<!-- /.content -->
|
|
{% endblock %}
|