mirror of
https://github.com/Asabeneh/30-Days-Of-Python.git
synced 2026-06-12 21:01:48 +08:00
17 lines
392 B
HTML
17 lines
392 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1>Text Analyzer</h1>
|
|
<form action="http://localhost:5000/post" method="POST">
|
|
<div>
|
|
<textarea rows='25' name="content" autofocus></textarea>
|
|
</div>
|
|
<div>
|
|
<input type='submit' class="btn" value="Process Text" />
|
|
</div>
|
|
|
|
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %} |