1269 - Content updates for Service Settings after login.gov integration

This commit is contained in:
Jonathan Bobel
2024-04-08 11:32:09 -04:00
parent 2b6b58c93a
commit f46f9661f1
3 changed files with 13 additions and 2 deletions

View File

@@ -650,6 +650,7 @@ def service_set_channel(service_id, channel):
def service_set_auth_type(service_id):
return render_template(
"views/service-settings/set-auth-type.html",
login_gov_enabled=False,
)

View File

@@ -16,7 +16,12 @@
<div class="grid-row">
<div class="grid-col-10">
{{ page_header('Sign-in method') }}
{% if 'email_auth' in current_service.permissions %}
{% if login_gov_enabled %}
<p>Your username, password, and multi-factor authentication options are handled by Login.gov.</p>
<p>To make changes, head to <a href="https://login.gov/">Login.gov</a> and sign-in with your credentials.</p>
<p>Any changes made to your Login.gov account will automatically be synced with Notify.gov.</p>
{% elif 'email_auth' in current_service.permissions and not login_gov_enabled %}
<p class="heading-small bottom-gutter-2-3">
Email link or text message code
</p>