forked from Dewansh1029/FlaskS_based_weather_dashboard
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhome.html
32 lines (32 loc) · 803 Bytes
/
home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<tittle class="weatherText">Weather Dashboard</tittle>
<link
rel="stylesheet"
type="text/css"
href="{{url_for('static', filename='styles/home.css')}}"
/>
</head>
<body>
<h2 class="weatherText">World weather Information</h2>
<form
class="weatherText"
id="weatherForm"
action="{{url_for('render_results')}}"
method="post"
>
City name :
<input type="text" name="cityname" /><br />
State name :
<input type="text" name="statename" /><br />
Country code:
<input type="text" name="countrycode" /><br />
<input
class="weatherText"
id="weatherSubmit"
type="submit"
value="Submit"
/>
</form>
</body>
</html>