Commit 265ef612 authored by Trisha Angel Millena's avatar Trisha Angel Millena

Created add-author.html and add-book.html

parent 6c95b2c5
{% extends 'base.html' %}
{% load static %}
{% block title %}Add New Author{% endblock %}
<form method = "POST">
{% csrf_token % }
{% for field in form%}
{% endform %}
<button type = "submit">Add Book</button>
</form>
{% block content %}
{% endblock %}
{% extends 'base.html' %}
{% load static %}
{% block title %}Add New Book{% endblock %}
<form method = "POST">
{% csrf_token % }
{% for field in form%}
{% endform %}
<button type = "submit">Add Author</button>
</form>
{% block content %}
{% endblock %}
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