-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.46 KB
/
index.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>weather</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="row" style="background: grey; color: white;">
<div align="center"><h1 class="col-md-3 text-center">Weather Detector</h1></div>
</nav>
<br />
<br />
<center class="row">
<form action="" method="post" class="col-md-6 col-md-offset-3">
{% csrf_token %}
<div class="input-group">
<input type="text" class="form-control" name="city" placeholder="Search">
<div class="input-group-btn">
<button class="btn btn-default" type="submit">
<i class="glyphicon glyphicon-search"></i>
</button>
</div>
<form>
</center>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>{{city}}</h1>
<h3>country code : {{data.country_code}}</h1>
<h5>coordinate : {{data.coordinate}}</h5>
<h5>temp : {{data.temp}}</h5>
<h5>pressure : {{data.pressure}} </h5>
<h5>humidity : {{data.humidity}}</h5>
</div>
</div>
</body>
</html>