You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
518 B
HTML

{% extends "base.html" %}
{% block content %}
<div id="index">
<h1>{{ title }}</h1>
<p>{{ msg }}</p>
<form action="/" method="POST">
<!-- You can use differen input type's in a form. -->
<!-- See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input -->
<p><input type="text" name="name" placeholder="(name)" required/></p>
<p><textarea name="text" rows="5" cols="33" placeholder="(text)" required></textarea></p>
<p><input type="submit" value="submit" /></p>
</form>
</div>
{% endblock %}