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.
35 lines
983 B
35 lines
983 B
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<div class="description">
|
|
<h2 style = "text-align: center;">Write something very interesting here.</h2>
|
|
|
|
<!--passing files-->
|
|
<p>{{ file }}</p>
|
|
|
|
<!-- <img src="{{ url_for('static', filename='/files/001/DwySYC4X4AESeRh.jpg') }}">
|
|
-->
|
|
<!--passing an array-->
|
|
<!-- {% for v in listingdirectories %}
|
|
<div>{{ v }}</div>
|
|
{% endfor %}
|
|
{% for f in listingfiles %}
|
|
<div>{{ f }}</div>
|
|
{% endfor %}
|
|
-->
|
|
|
|
{% for message in form.name.errors %}
|
|
<div>{{ message }}</div>
|
|
{% endfor %}
|
|
|
|
<form method="POST" action="/get-data">
|
|
<fieldset>
|
|
{{ form.hidden_tag() }}
|
|
<div>{{ form.name.label }} {{ form.name }}</div>
|
|
<div>{{ form.email.label }} {{ form.email }}</div>
|
|
<div>{{ form.friend.label }} {{ form.friend }}</div>
|
|
<div>{{ form.content.label }} {{ form.content }}</div>
|
|
<div>{{ form.submit }}</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|
|
|