Skip to content

Commit

Permalink
Submission Page Update (#1809)
Browse files Browse the repository at this point in the history
* Submission page upate - copy, spacing, back button

* Now with 8% more linting!

* Margin left - move all content towards the center
  • Loading branch information
jperson1 authored Aug 14, 2023
1 parent dc25310 commit e3a728c
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions backend/audit/templates/audit/submission.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
<div class="grid-container margin-top-6">
<div class="grid-container margin-y-6">
<div class="grid-row grid-gap">
<form class="usa-form usa-form--large" id="submission" method="post">
<form class="usa-form usa-form--large margin-left-4" id="submission" method="post">
{% csrf_token %}
<fieldset class="usa-fieldset">
<legend class="usa-legend usa-legend--large" id="submission">
Audit Submission
</legend>
<p>
This is some text explaining that clicking the button below will submit this audit. Once submitted, the audit can no longer be edited.
<h1 class="font-sans-2xl" id="submission">Single Audit Submission</h1>
<p class="margin-0 font-sans-md">
Clicking the "Submit Single Audit" button below will send your report to the Federal Audit Clearinghouse (FAC). Once you've done this, you can't undo this action and can't make changes to the report.
</p>
<p>Audit {{ report_id }} has a submission status of: {{ submission_status }}</p>
<h4 class="usa-process-list__heading">This action is taken by the CERTIFYING AUDITEE</h4>
<button class="usa-button" id="continue">Submit Audit</button>
<p class="margin-y-4 font-sans-md">
Please save copies of all submitted documents to your local drive. The FAC doesn't maintain these files, and can't return them for future review.
</p>
<div class="margin-top-6">
<button class="usa-button margin-right-2" id="continue">Submit Single Audit</button>
<a href="{% url 'audit:SubmissionProgress' report_id %}">Cancel</a>
</div>
</fieldset>
</form>
</div>
Expand Down

0 comments on commit e3a728c

Please sign in to comment.