Flask - POST Error 405 Method Not Allowed
Replace:
<form action="/" method="post">
with:
<form action="{{ url_for('template') }}" method="post">
Your form is submitting to /
when the method is routed for /template
unless that is a typo, you should adjust your form's action
attribute to point at the template
view: action="{{ url_for('template') }}"