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">
<div class="panel__heading"> <div class="panel__heading">
<h1>New Request</h1> <h1>{% block heading %}{% endblock %}</h1>
<div class="subtitle">{% block subtitle %}{% endblock %}</div> <div class="subtitle"><h2>New Request</h2></div>
</div> </div>
<div class="panel__content"> <div class="panel__content">

View File

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

View File

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

View File

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

View File

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

View File

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