Se dejo mas bonito, con una vista de preview donde puedo editar los nombres de los archivos o eliminarlos ademas de una vista de about, donde alguien puede contactarme en caso de haber algun problema con sus imagenes
This commit is contained in:
21
files/templates/about/about.html
Normal file
21
files/templates/about/about.html
Normal file
@@ -0,0 +1,21 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}about{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h3>About This</h3>
|
||||
<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 %}
|
||||
Reference in New Issue
Block a user