flask-contacts/templates/web/new_contact.html

10 lines
287 B
HTML
Raw Normal View History

2017-05-10 18:41:02 +02:00
{% extends 'layouts/master.html' %}
{% block title %}New contact{% endblock %}
{% block body %}
<h1>New contact</h1>
<form action="{{ url_for('new_contact') }}" method="post">
2017-05-16 23:45:41 +02:00
{{ generate_fields(form) }}
2017-05-10 18:41:02 +02:00
<input type="submit" class="btn btn-success" value="Add">
</form>
{% endblock %}