Semantic UI version

This commit is contained in:
2018-07-13 10:19:37 +02:00
parent b82cacc665
commit b54674c703
18 changed files with 594 additions and 143 deletions

View File

@@ -3,7 +3,7 @@
{% block content %}
<h2>Create event</h2>
<form method="post">
<form method="post" class="ui form">
{{ form.hidden_tag() }}
{% if form.errors %}
@@ -20,7 +20,7 @@
{{ field(form.all_day) }}
{{ field(form.description) }}
<button type="submit">{% trans %}Save{% endtrans %}</button>
<a href="{{ url_for('hello') }}">Cancel</a>
<button type="submit" class="ui primary button">{% trans %}Save{% endtrans %}</button>
<a href="{{ url_for('hello') }}" class="ui button">Cancel</a>
</form>
{% endblock content %}