Created HTML tempaltes for new webpages

parent 355e13de
{% extends 'base.html' %}
{% block title %} Edit Author {% endblock %}
{% block header %} {% endblock %}
{% block content %}
<form action="" method=POST>
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Save Changes">
</form>
{% endblock %}
{% block navbar %}
{% endblock %}
\ No newline at end of file
{% extends 'base.html' %}
{% block title %} Edit Books {% endblock %}
{% block header %} {% endblock %}
{% block content %}
<form action="" method=POST>
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Save Changes">
</form>
{% endblock %}
{% block navbar %}
{% endblock %}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment