Assf
Assf
html' %}
{% block content %}
<div class="jumbotron">
<h1 class="display-4">Welcome to Weather Forecast!</h1>
<p class="lead">Enter a city below to get the weather forecast.</p>
<form action="{% url 'weather_forcast' %}" method="post">
{% csrf_token %}
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Enter city"
name="city">
<div class="input-group-append">
<button class="btn btn-primary" type="submit">Get Forecast</button>
</div>
</div>
</form>
</div>
{% endblock %}