Flask – POST Error 405 Method Not Allowed

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') }}"

Leave a Comment