mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
31 lines
513 B
HTML
31 lines
513 B
HTML
{% extends "govuk_template.html" %}
|
|
|
|
|
|
{% block page_title %}
|
|
GOV.UK notifications admin
|
|
{% endblock %}
|
|
|
|
|
|
{% block cookie_message %}
|
|
{% endblock %}
|
|
|
|
|
|
{% block inside_header %}
|
|
<div class="phase-banner-beta">
|
|
|
|
<strong class="phase-tag">BETA</strong>
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
{% set global_header_text = "GOV.UK Notify" %}
|
|
|
|
|
|
{% if not current_user.is_authenticated() %}
|
|
{% set homepage_url = url_for('main.index') %}
|
|
{% else %}
|
|
{% set homepage_url = url_for('main.dashboard') %}
|
|
{% endif %}
|
|
|