diff options
Diffstat (limited to 'templates/main.html')
| -rw-r--r-- | templates/main.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/main.html b/templates/main.html new file mode 100644 index 0000000..296d813 --- /dev/null +++ b/templates/main.html @@ -0,0 +1,15 @@ +<head> + <title>Heating</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel= "stylesheet" + type= "text/css" + href= "{{ url_for('static',filename='style.css') }}"> +</head> +<body> + <p> {{ forecast_temp }} </p> + <a href="/up"> <p>Increase</p> </a> + <p> {{ actual_temp }} </p> + <p> {{ target_temp }} </p> + <a href="/down"> <p>Decrease</p> </a> + <a href="/export"> <p>Export data</p> </a> +</body> |
