manage.get.gov/src/registrar/templates/application_intro.html
Michelle Rago 2d21015fd8
Add PRA burden link to application intro (#1645)
* Add PRA burden link to application intro

* Spacing

* Changed link to PRA statement

* Spacing

* Added PRA expiration date

* Minor edits

* Fiddling

* Don't think we need the contact link in the text

Trying to slim down the text before the "Continue" button. The user will have access to the contact link throughout. Doesn't seem important to include it here.

* Testing PRA placement below "Continue" button

* Trying to get smaller font/not bold

* Trying xs

* Update application_intro.html

* Trying caption class

* Try div instead of p

* Update application_intro.html

* Top margin

* Update application_intro.html
2024-01-18 16:27:02 -05:00

35 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base.html' %}
{% load static form_helpers url_helpers %}
{% block content %}
<main id="main-content" class="grid-container">
<div class="grid-col desktop:grid-offset-2 desktop:grid-col-8">
<form class="usa-form usa-form--extra-large" method="post" novalidate>
{% csrf_token %}
<h1>Youre about to start your .gov domain request.</h1>
<p>You dont have to complete the process in one session. You can save what you enter and come back to it when youre ready.</p>
<p>Well use the information you provide to verify your organizations eligibility for a .gov domain. Well also verify that the domain you request meets our guidelines.</p>
<h2>Time to complete the form</h2>
<p>If you have <a href="{% public_site_url 'domains/before/#information-you%E2%80%99ll-need-to-complete-the-domain-request-form' %}" target="_blank" class="usa-link">all the information you need</a>,
completing your domain request might take around 15 minutes.</p>
{% block form_buttons %}
<div class="stepnav">
<button
type="submit"
name="submit_button"
value="intro_acknowledge"
class="usa-button"
>Continue</button>
</div>
{% endblock %}
</form>
<div class="caption margin-top-5"><a href="{% public_site_url 'privacy-policy#pra' %}" target="_blank" rel="noopener noreferrer" class="usa-link">Paperwork Reduction Act statement</a> (OMB control number: 1670-0049; expiration date: 10/31/2026)</div>
</div>
</main>
{% endblock %}