Merge pull request #402 from cisagov/ik/style-confirm-page

Style the confirmation page
This commit is contained in:
Igor Korenfeld 2023-02-10 11:34:35 -05:00 committed by GitHub
commit d6c7b225f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 42 additions and 19 deletions

1
.gitignore vendored
View file

@ -3,6 +3,7 @@
docs/research/data/**
**/assets/*
!**/assets/sass/
!**/assets/img/registrar/
public/
credentials*

View file

@ -0,0 +1,19 @@
<svg width="68" height="68" viewBox="0 0 68 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="35" cy="34" r="33" fill="#F5F8FA"/>
<path d="M67 40C67 38.8954 66.1046 38 65 38C63.8954 38 63 38.8954 63 40C63 41.1046 63.8954 42 65 42C66.1046 42 67 41.1046 67 40Z" fill="#7AA5C1"/>
<circle cx="15" cy="56" r="1" fill="#7AA5C1"/>
<circle cx="39" cy="6" r="1" fill="#7AA5C1"/>
<circle cx="61" cy="10" r="1" fill="#7AA5C1"/>
<circle cx="1.5" cy="27.5" r="1.5" fill="#7AA5C1"/>
<circle cx="23" cy="65" r="2" fill="#7AA5C1"/>
<path d="M14 23C14.5523 23 15 22.5523 15 22C15 21.4477 14.5523 21 14 21C13.4477 21 13 21.4477 13 22C13 22.5523 13.4477 23 14 23Z" fill="#7AA5C1"/>
<circle cx="16.5" cy="10.5" r="1.5" fill="#7AA5C1"/>
<circle cx="65" cy="26" r="1" fill="#7AA5C1"/>
<circle cx="63" cy="55" r="1" fill="#7AA5C1"/>
<circle cx="50.5" cy="56.5" r="1.5" fill="#7AA5C1"/>
<circle cx="39.5" cy="66.5" r="1.5" fill="#7AA5C1"/>
<path d="M30 2.5C30 3.88071 28.8807 5 27.5 5C26.1193 5 25 3.88071 25 2.5C25 1.11929 26.1193 0 27.5 0C28.8807 0 30 1.11929 30 2.5Z" fill="#7AA5C1"/>
<circle cx="49.5" cy="11.5" r="2.5" fill="#7AA5C1"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.7281 51.7024C44.5191 51.7024 52.4562 43.7653 52.4562 33.9743C52.4562 24.1833 44.5191 16.2462 34.7281 16.2462C24.9371 16.2462 17 24.1833 17 33.9743C17 43.7653 24.9371 51.7024 34.7281 51.7024ZM43.7578 27.816C44.3899 26.9102 44.1681 25.6635 43.2623 25.0313C42.3565 24.3992 41.1098 24.621 40.4776 25.5268L31.6476 38.1786L27.3554 33.4977C26.6089 32.6836 25.3437 32.6288 24.5296 33.3753C23.7155 34.1218 23.6607 35.387 24.4072 36.2011L30.3857 42.7209C30.7959 43.1682 31.3869 43.405 31.9925 43.3648C32.598 43.3245 33.1525 43.0115 33.4999 42.5138L43.7578 27.816Z" fill="#5E9732"/>
<path d="M6 44C6 45.1046 5.10457 46 4 46C2.89543 46 2 45.1046 2 44C2 42.8954 2.89543 42 4 42C5.10457 42 6 42.8954 6 44Z" fill="#7AA5C1"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -1,32 +1,35 @@
{% extends 'base.html' %}
{% load static %}
{% block title %}Thank you for your domain request{% endblock %}
{% block content %}
<h1>Thank you</h1>
<main id="main-content" class="grid-container register-form-step">
<span class="display-flex flex-align-center" >
<img
class= "maxw-7 margin-top-neg-2 margin-right-105"
src="{%static 'img/registrar/dotgov_confirmation.svg' %}"
alt="Check mark confirming submission"
width="56"
/>
<h1>Thank you</h1>
</span>
<p> Thank you for your domain request. We'll email a copy of your request to you,
your authorizing official, and any contacts you added.</p>
<p>
Thank you for your domain request. We'll email a copy of your request to you,
your authorizing official, and any contacts you added.</p>
<h2>Next steps in this process</h2>
<h2>Next steps in this process</h2>
<ul>
<li> We'll review your request. This could take up to two weeks. During
this review we'll verify that your <ul>
<p> We'll review your request. This could take up to two weeks. During
this review we'll verify that your:</p>
<ul class="usa-list">
<li>Organization is eligible for a .gov domain</li>
<li>Authorizing official approves your request</li>
<li>Domain meets our naming requirements</li>
</ul>
</li>
</ul>
<li> You can <a href="{% url 'todo' %}"><del>check the
status</del></a> of your request at any time.
</li>
<li> We'll email you with any questions or when we complete our
review.</li>
</ul>
<p> You can <a href="{% url 'todo' %}"><del>check the status</del></a>
of your request at any time. We'll email you with any questions or when we
complete our review.</p>
</main>
{% endblock %}