mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-06 09:45:23 +02:00
* 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
35 lines
1.6 KiB
HTML
35 lines
1.6 KiB
HTML
{% 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>You’re about to start your .gov domain request.</h1>
|
||
<p>You don’t have to complete the process in one session. You can save what you enter and come back to it when you’re ready.</p>
|
||
<p>We’ll use the information you provide to verify your organization’s eligibility for a .gov domain. We’ll 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 %}
|