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.
32 lines
715 B
HTML
32 lines
715 B
HTML
{% extends "public/templates/public_template.html" %}
|
|
|
|
{% block title %}Upload book{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="spaceleft">
|
|
|
|
<h3>Request a Book</h3>
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|