You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
655 B
HTML
29 lines
655 B
HTML
{% extends "public/templates/public_template.html" %}
|
|
|
|
{% block title %}Upload book{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<h1>Request a Book</h1>
|
|
|
|
<form action='/submit' method='post'>
|
|
<label for='title'>Title</label>
|
|
<input name='title' type='text'></input>
|
|
|
|
<label for='author'>Author</label>
|
|
<input name='author' type='text'></input>
|
|
|
|
<label for='publisher'>Publisher</label>
|
|
<input name='publisher' type='text'></input>
|
|
|
|
<label for='year'>Year</label>
|
|
<input name='year' type='text'></input>
|
|
|
|
<label for='extention'>Extention</label>
|
|
<input name='extention' type='text'></input>
|
|
|
|
<input type='submit'></input>
|
|
</form>
|
|
|
|
{% endblock %}
|