-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reCAPTCHA: Enrollment Success, Logged Out #2579
Changes from 4 commits
2b50e4b
31722ca
45351bd
9059962
279fc00
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -12,7 +12,7 @@ | |||||
{% endblock page-title %} | ||||||
|
||||||
{% block headline %} | ||||||
<div class="col-lg-7"> | ||||||
<div class="col-lg-9"> | ||||||
<h1 class="pb-lg-4 mb-lg-3 pb-4"> | ||||||
{% block headline-message %} | ||||||
{% blocktranslate trimmed %} | ||||||
|
@@ -24,7 +24,7 @@ <h1 class="pb-lg-4 mb-lg-3 pb-4"> | |||||
{% endblock headline %} | ||||||
|
||||||
{% block inner-content %} | ||||||
<div class="col-12 col-sm-12 col-lg-9"> | ||||||
<div class="col-12 col-lg-9"> | ||||||
<div class="row flex-column-reverse flex-lg-row"> | ||||||
<div class="col-12 col-lg-7 pe-1"> | ||||||
{# djlint:off #} | ||||||
|
@@ -52,18 +52,13 @@ <h2 class="h3 mt-lg-3 mb-1">{% translate "Your benefit will expire on" %} {{ enr | |||||
alt="" /> | ||||||
</div> | ||||||
</div> | ||||||
</div> | ||||||
{% endblock inner-content %} | ||||||
|
||||||
{% block call-to-action %} | ||||||
{% if authentication and authentication.logged_in and authentication.sign_out_button_template %} | ||||||
<div class="row d-flex justify-content-start justify-content-lg-center"> | ||||||
<div class="col-12 col-lg-8 pt-lg-5 mt-lg-0 pt-4 mt-2"> | ||||||
<p> | ||||||
{% if authentication and authentication.logged_in and authentication.sign_out_button_template %} | ||||||
<div class="row justify-content-start justify-content-lg-center"> | ||||||
<p class="pt-lg-5 mt-lg-0 pt-4 mt-2"> | ||||||
{% translate "If you are on a public or shared computer, don’t forget to sign out of " %} | ||||||
{% include authentication.sign_out_button_template %} | ||||||
</p> | ||||||
</div> | ||||||
</div> | ||||||
{% endif %} | ||||||
{% endblock call-to-action %} | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The current file has the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok so I think the idea here with moving it up to Ultimately the spacing / alignment looks correct ✅ :
Could you explain more what you mean by:
? I'm not fully following and am curious what it means to be more specific with the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry that line was confusing 😆 , as I'm wondering to myself what it means 😆 Instead I'm going to say, although we can put the Just in case in the future, there's some other new re-design to the |
||||||
{% endif %} | ||||||
</div> | ||||||
{% endblock inner-content %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Putting a
span
with ad-block
to wrap animg
...... so weird! Changed to adiv
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, weird also that the image/icon was inside the
h1
. This makes way more sense 👍