Improve request form headers clarity

This commit is contained in:
luis cielak 2018-09-13 09:35:21 -04:00 committed by luisgov
parent f3abb6bbf0
commit ce34a5afee
6 changed files with 12 additions and 12 deletions

View File

@ -17,8 +17,8 @@
<div class="panel">
<div class="panel__heading">
<h1>New Request</h1>
<div class="subtitle">{% block subtitle %}{% endblock %}</div>
<h1>{% block heading %}{% endblock %}</h1>
<div class="subtitle"><h2>New Request</h2></div>
</div>
<div class="panel__content">

View File

@ -49,8 +49,8 @@
<div class="panel">
<div class="panel__heading">
<h1>Order #{{ request_id }}</h1>
<div class="subtitle" id="financial-verification"><h2>Financial Verification</h2></div>
<h1>Financial Verification</h1>
<div class="subtitle" id="financial-verification"><h2>Order #{{ request_id }}</h2></div>
</div>
<div class="panel__content">

View File

@ -5,8 +5,8 @@
{% from "components/options_input.html" import OptionsInput %}
{% from "components/date_input.html" import DateInput %}
{% block subtitle %}
<h2>Details of Use</h2>
{% block heading %}
Details of Use
{% endblock %}
{% block form %}

View File

@ -5,8 +5,8 @@
{% from "components/options_input.html" import OptionsInput %}
{% from "components/date_input.html" import DateInput %}
{% block subtitle %}
<h2>Information About You</h2>
{% block heading %}
Information About You
{% endblock %}
{% block form %}

View File

@ -4,8 +4,8 @@
{% from "components/text_input.html" import TextInput %}
{% from "components/checkbox_input.html" import CheckboxInput %}
{% block subtitle %}
<h2>Designate a Workspace Owner</h2>
{% block heading %}
Designate a Workspace Owner
{% endblock %}
{% block form %}

View File

@ -8,8 +8,8 @@
{% from "components/text_input.html" import TextInput %}
{% from "components/icon.html" import Icon %}
{% block subtitle %}
<h2>Review &amp; Submit</h2>
{% block heading %}
Review &amp; Submit
{% endblock %}