Files
flask-files/files/templates/about/about.html

22 lines
884 B
HTML

{% extends 'base.html' %}
{% block title %}about{% endblock %}
{% block content %}
<h4>About This</h4>
<p>This page is a simple static file server mainly for things that i want to link in my main webpage. If for some reason, one of the files uploaded here belongs to you, and you dont want it here, send me a message and I will contact you.</p>
{% for message in get_flashed_messages() %}
<li class="flash">{{ message }}!!</li>
{% endfor %}
<form method="post">
<label for="name">~/name:</label>
<input type="text" class="u-full-width" id="name" name="name">
<label for="email">~/email:</label>
<input type="email" class="u-full-width" id="email" name="email">
<label for="message">~/message:</label>
<textarea id="message" name="message" class="u-full-width"></textarea>
<input type="submit" class="button-primary" value="Send">
</form>
{% endblock %}