{% extends 'base.html' %} {% block content %} <div class=content-noborder> <div class=index-header> <h1 class=index-header>Enter a Location</h1> </div> {% if msg is defined %} <div class=index-header> <h2 class=index-header>{{ msg }}</h2> </div> {% endif %} <div class=index-form> <form method="post"> {{ form.csrf_token }} {{ form.location }} {{ form.submit() }} </form> </div> </div> {% endblock %}