summaryrefslogtreecommitdiff
path: root/templates/main.html
blob: 296d813654d442b3e8508ffb6427739e491dcb1d (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> {{ 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>