-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add eligibility start template for CalFresh verifier
- Loading branch information
1 parent
23d3da9
commit 3a3044c
Showing
3 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
.../eligibility/templates/eligibility/includes/media-item--idcardcheck--start--calfresh.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{% extends "eligibility/includes/media-item--idcardcheck.html" %} | ||
|
||
{% load i18n %} | ||
|
||
{% block heading %} | ||
{% translate "A Login.gov account with identity verification" %} | ||
{% endblock heading %} | ||
|
||
{% block body %} | ||
<div class="media-body--details"> | ||
<p> | ||
{% translate "You will be able to create an account using your email address if you do not already have one. We use your Login.gov account to verify your identity." %} | ||
{% translate "Learn more about identity verification" as text %} | ||
{% include "core/includes/modal-trigger.html" with modal="modal--identity-verification" text=text period=True %} | ||
</p> | ||
<div class="media-body--items"> | ||
<p>{% translate "For this process you will need:" %}</p> | ||
<ul> | ||
<li>{% translate "Your state-issued ID card" %}</li> | ||
<li>{% translate "Your Social Security number" %}</li> | ||
<li>{% translate "A phone number with a phone plan associated with your name" %}</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
{% include "eligibility/includes/modal--login-gov-start-help.html" with size="modal-lg" id="modal--identity-verification" header="p-md-2 p-3" body="pb-md-3 mb-md-3 mx-md-3 py-0 pt-0 absolute-top" %} | ||
{% endblock body %} |
28 changes: 28 additions & 0 deletions
28
benefits/eligibility/templates/eligibility/start--calfresh.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{% extends "eligibility/start.html" %} | ||
{% load i18n %} | ||
|
||
{% block page-title %} | ||
{% translate "CalFresh benefit overview" %} | ||
{% endblock page-title %} | ||
|
||
{% block headline %} | ||
<div class="col-lg-8"> | ||
<h1>{% translate "You selected a CalFresh Cardholder transit benefit." %}</h1> | ||
</div> | ||
{% endblock headline %} | ||
|
||
{% block media-item %} | ||
{% include "eligibility/includes/media-item--idcardcheck--start--calfresh.html" %} | ||
{% endblock media-item %} | ||
|
||
{% block call-to-action %} | ||
<div class="row d-flex justify-content-lg-end"> | ||
<div class="col-lg-4 offset-2 offset-lg-0 col-sm-8 col-8 d-flex justify-content-lg-end justify-content-center"> | ||
{% url "oauth:login" as button_url %} | ||
{% translate "Get started with" as button_text %} | ||
<a href="{{ button_url }}" class="btn btn-lg btn-primary login"> | ||
{{ button_text }} <span class="fallback-text white-logo">Login.gov</span> | ||
</a> | ||
</div> | ||
</div> | ||
{% endblock call-to-action %} |