summaryrefslogtreecommitdiff
path: root/templates/main.html
blob: 262ba6f25ea380c15e95076f65b64c3fd8543176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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> Outside: {{ forecast_temp }} </p>
    <a href="/up"> <p>Increase</p> </a>
    <p> Inside: {{ actual_temp }} </p>
    <p> Target: {{ target_temp }} </p>
    <a href="/down"> <p>Decrease</p> </a>
    <a href="/export"> <p>Export data</p> </a>
</body>