11 lines
218 B
HTML
11 lines
218 B
HTML
|
{% extends "layout.html" %}
|
||
|
{% block body %}
|
||
|
|
||
|
<form action="/" method="post">
|
||
|
<input type="text" size="50" name="sentence" value="{{ request.form.sentence }}"/>
|
||
|
<input type="submit" />
|
||
|
|
||
|
</form>
|
||
|
|
||
|
|
||
|
{% endblock %}
|