PWSS/templates/index.html
2022-01-04 00:05:29 +02:00

24 lines
766 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<title>PWSS</title>
</head>
<body>
<img id="camera" src="http://openwebrx.local:9000/stream.mjpg" width="640" height="480" autoplay="">
<div id="weather-data">
<ul>
<li>{{stinker}}</li>
{% for i in HTP.keys() %}
<li>{{HTP[i]}}</li>
{% endfor %}
</ul>
<form action="/api/save" method="post">
<button type="submit" name="foo" value="upvote"> Save data </button>
</form>
</div>
</body>
</html>