0% found this document useful (0 votes)
7 views1 page

Assf

The document extends a base HTML template and defines a title and content block. It contains a form to enter a city and submit to get a weather forecast.

Uploaded by

Subhajit Kundu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

Assf

The document extends a base HTML template and defines a title and content block. It contains a form to enter a city and submit to get a weather forecast.

Uploaded by

Subhajit Kundu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

{% extends 'base.

html' %}

{% block title %}Home{% endblock %}

{% 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 %}

You might also like