Skip to content

Commit 4f25f6d

Browse files
committed
fix(error-base): rename and refactor error-base
1 parent 4243e4b commit 4f25f6d

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

benefits/in_person/templates/in_person/enrollment/retry.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "error-base.html" %}
1+
{% extends "in_person/error-base.html" %}
22

33
{% block error-message %}
44
<h3 class="fw-bold h4">Card not found.</h3>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{% extends "admin/flow-base.html" %}
2+
{% load static %}
3+
4+
{% block title %}
5+
{{ title }}
6+
{% endblock title %}
7+
8+
{% block flow-content %}
9+
<div class="p-3 min-vh-60 d-flex flex-column justify-content-between">
10+
<div class="d-flex">
11+
<i class="error-icon"></i>
12+
<div class="mt-lg-3">
13+
{% block error-message %}
14+
{% endblock error-message %}
15+
</div>
16+
</div>
17+
<div class="row">
18+
{% block cta-buttons %}
19+
{% endblock cta-buttons %}
20+
</div>
21+
</div>
22+
{% endblock flow-content %}

0 commit comments

Comments
 (0)