Skip to content

Commit

Permalink
Admin: Log out page styled (#2397)
Browse files Browse the repository at this point in the history
  • Loading branch information
machikoyasuda authored Sep 25, 2024
2 parents 16f1c80 + 183f2ff commit bfe0d38
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions benefits/templates/registration/logged_out.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{% extends "admin/agency-base.html" %}
{% load static %}

{% block title %}
Logged out | Cal-ITP Benefits Administrator
{% endblock title %}

{% block extrastyle %}
{{ block.super }}
<link rel="stylesheet" href="{% static "admin/css/login.css" %}">
{% endblock extrastyle %}

{% block bodyclass %}
{{ block.super }} login
{% endblock bodyclass %}

{% block branding %}
<div class="d-flex justify-content-center w-100 bg-primary">
<img class="my-3" src="{% static "img/logo-lg.svg" %}" width="220" height="50" alt="California Integrated Travel Project: Benefits logo (large)" />
</div>

<div id="site-name">
<h1 class="text-center text-white fs-3 py-3 m-0">Administrator</h1>
</div>
{% endblock branding %}

{% block content %}

<div id="content-main">
<p class="text-center mt-4">You have logged out successfully.</p>

<a class="btn btn-lg btn-outline-primary d-block my-5" href="{% url 'admin:index' %}">Log in again</a>
</div>

{% endblock content %}

0 comments on commit bfe0d38

Please sign in to comment.