~deadlight/canonical-identity-provider/delete-account

« back to all changes in this revision

Viewing changes to src/webui/templates/vanilla/base.html

  • Committer: Karl Williams
  • Date: 2019-07-26 13:31:34 UTC
  • Revision ID: karl@deadlight.net-20190726133134-z5fz3ft8ovvlggwl
Update login and create account pages to the vanilla template

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
      {% endblock %}
51
51
 
52
52
      <div id="content">
 
53
        <section class="p-strip--dark p-cip-hero">
 
54
          <div class="row">
 
55
            <div class="col-7">
 
56
              {% block text_title %}{% endblock %}
 
57
            </div>
 
58
          </div>
 
59
        </section>
53
60
 
54
61
        {% block readonly %}
55
62
        {% if readonly %}
63
70
 
64
71
        {% block messages %}
65
72
        {% if messages %}
66
 
        {% for message in messages %}
67
 
        <div class="p-notification">
68
 
          <p class="p-notification__response">
69
 
            {{ message }}
70
 
          </p>
71
 
        </div>
72
 
        {% endfor %}
73
 
        {% endif %}
74
 
        {% endblock %}
75
 
 
76
 
        <section class="p-strip--dark p-cip-hero">
 
73
        <section class="p-strip is-shallow">
 
74
          {% for message in messages %}
77
75
          <div class="row">
78
 
            <div class="col-7">
79
 
              {% block text_title %}{% endblock %}
 
76
            <div class="col-12">
 
77
              <div class="p-notification">
 
78
                <p class="p-notification__response">
 
79
                  {{ message }}
 
80
                </p>
 
81
              </div>
80
82
            </div>
81
83
          </div>
 
84
          {% endfor %}
82
85
        </section>
 
86
        {% endif %}
 
87
        {% endblock %}
83
88
 
84
89
        <div id="{% block content_id %}box{% endblock %}">
85
90
          {% block content %}{% endblock %}