ventilaar
/
twitter_zuil
Archived
1
Fork 0
This repository has been archived on 2021-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
twitter_zuil/templates/zuil.html

19 lines
670 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ locatie[1] }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"/>
</head>
<body>
<h1>Welkom op {{ locatie[1] }}</h1>
{% include 'flash_template.html' %}
<p>Heeft u feedback voor ons?</p>
<form method="POST" action="/zuil/post">
<input type="text" placeholder="Wat is uw feedback" name="bericht" required>
<input type="text" placeholder="Wat is uw naam" name="naam" required>
<button type="submit">Verstuur</button>
</form>
<p>Feedback wordt openbaar gemaakt op Twitter na goedkeuring</p>
</body>
</html>