add titles to pages
This commit is contained in:
parent
d2871e86cc
commit
7f440df1cb
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "_skel.html" %}
|
||||
{% block title %}Log in{% endblock %}
|
||||
{% block header_width %}max-w-xs{% endblock %}
|
||||
{% from "_formhelpers.html" import render_field %}
|
||||
{% block content %}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "_skel.html" %}
|
||||
{% block title %}Log out{% endblock %}
|
||||
{% block header_width %}max-w-xs{% endblock %}
|
||||
{% block header_user %}{% endblock %}
|
||||
{% from "_formhelpers.html" import render_field %}
|
||||
|
|
@ -8,7 +9,7 @@
|
|||
<h3>Are you sure you want to log out?</h3>
|
||||
{{ form.csrf_token }}
|
||||
{{ render_field(form.submit, False) }}
|
||||
<p class="text-center text-xs">
|
||||
<p class="text-xs text-center">
|
||||
<a class="link" href="{{ url_for('main.index') }}">cancel</a>
|
||||
</p>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "_skel.html" %}
|
||||
{% block title %}Register{% endblock %}
|
||||
{% block header_width %}max-w-xs{% endblock %}
|
||||
{% from "_formhelpers.html" import render_field %}
|
||||
{% block content %}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "_skel.html" %}
|
||||
{% block title %}Welcome{% endblock %}
|
||||
{% block content %}
|
||||
<div class="max-w-lg m-auto card">
|
||||
<h3 class="text-2xl text-center">Welcome!</h3>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "_skel.html" %}
|
||||
{% block title %}{% if is_today %}Home{% else %}{{ day }}{% endif %}{% endblock %}
|
||||
{% block content %}
|
||||
<div class="max-w-lg mx-auto card">
|
||||
<form method="POST" action="{{ url_for('main.index') }}">
|
||||
|
|
|
|||
Loading…
Reference in New Issue