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.
38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
5 years ago
|
{% extends "public/templates/public_template.html" %}
|
||
|
|
||
|
{% block title %}Watermark Form{% endblock %}
|
||
|
|
||
|
{% block main %}
|
||
|
|
||
|
<h1>WATERMARK</h1>
|
||
|
<form action="/watermark" method="POST">
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label>Identify yourself with a name, nickname or pseudonym!</label><br>
|
||
|
<input class="form" type="text" name="name">
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label>Did you digitise the book?</label><br>
|
||
|
<input class="form" type="text" name="scan">
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label>How long did it take you?</label><br>
|
||
|
<input class="form" type="text" name="time">
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label>Where did you find the source?</label><br>
|
||
|
<input class="form" type="text" name="source">
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label>Why are you sharing this file?<br>You can tell a personal anecdote,<br>You can leave a personal message here!</label><br>
|
||
|
<input class="form" type="text" name="anecdote">
|
||
|
</div>
|
||
|
|
||
|
<button type="submit">Submit</button>
|
||
|
|
||
|
{% endblock %}
|