From 183f2ffdbac632f2d664506e1ff2b8e3385c9bc8 Mon Sep 17 00:00:00 2001 From: Machiko Yasuda Date: Mon, 23 Sep 2024 23:13:57 +0000 Subject: [PATCH] feat(admin): style Logged out page --- .../templates/registration/logged_out.html | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 benefits/templates/registration/logged_out.html diff --git a/benefits/templates/registration/logged_out.html b/benefits/templates/registration/logged_out.html new file mode 100644 index 000000000..c1ec08422 --- /dev/null +++ b/benefits/templates/registration/logged_out.html @@ -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 }} + +{% endblock extrastyle %} + +{% block bodyclass %} + {{ block.super }} login +{% endblock bodyclass %} + +{% block branding %} +
+ California Integrated Travel Project: Benefits logo (large) +
+ +
+

Administrator

+
+{% endblock branding %} + +{% block content %} + +
+

You have logged out successfully.

+ + Log in again +
+ +{% endblock content %}