{# Introducing the MySQL 8 Document Store This template defines the author template for use in the MyLibrary application using the base template. Dr. Charles Bell, 2017 #} {% extends "base.html" %} {% block title %}MyLibrary Search{% endblock %} {% block page_content %}
{{ form.csrf_token }}
Author - Detail {{ form.hidden_tag() }}
{{ form.firstname.label }}
{{ form.firstname(size=75) }}
{{ form.lastname.label }}
{{ form.lastname(size=75) }}

{{ form.create_button }} {% if form.del_button %} {{ form.del_button }} {% endif %}
{% endblock %}