You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.9 KiB
72 lines
1.9 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ url_for('static', filename='styles.css') }}"
|
|
/>
|
|
<title>Temporary Indexing</title>
|
|
</head>
|
|
<body>
|
|
<h1 class="title">Temporary Indexing</h1>
|
|
<p>
|
|
{{ petname_message}}. You are anonymous. You may reveal your identity
|
|
later when saving your generated files.
|
|
</p>
|
|
|
|
{% if generation_message %}
|
|
<p> {{ generation_message }} </p>
|
|
{% endif %}
|
|
<div class="container">
|
|
<div class="forms">
|
|
<form method="POST" action="/upload" enctype="multipart/form-data">
|
|
{{ upload_form.csrf_token }}
|
|
|
|
{{ upload_form.metadata.label }}
|
|
{{ upload_form.metadata }}
|
|
</form>
|
|
|
|
<form class="metafields" method="POST" action="/upload" enctype="multipart/form-data">
|
|
{{ upload_form.title.label }}
|
|
{{ upload_form.title }}
|
|
|
|
{{ upload_form.author.label }}
|
|
{{ upload_form.author }}
|
|
|
|
{{ upload_form.comments.label }}
|
|
{{ upload_form.comments }}
|
|
|
|
{{ upload_form.timestamp.label }}
|
|
{{ upload_form.timestamp }}
|
|
|
|
{{ upload_form.tags.label }}
|
|
{{ upload_form.tags }}
|
|
|
|
<input
|
|
type="hidden"
|
|
id="petname"
|
|
name="petname"
|
|
value="{{ petname }}"
|
|
/>
|
|
|
|
<input type="submit" value="generate" />
|
|
</form>
|
|
|
|
{% if upload_form.metadata.errors %}
|
|
<ul class="errors">
|
|
{% for error in upload_form.metadata.errors %}
|
|
<li>{{ error }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</div>
|
|
<div class="iframe">
|
|
<object data="{{ pdf }}" type="application/pdf">
|
|
<iframe src="{{ pdf }}"></iframe>
|
|
</object>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|