This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
powerpanel-webview/templates/index.html
2021-08-04 23:28:42 -05:00

33 lines
No EOL
1.1 KiB
HTML

<!doctype html>
<html>
<head>
<title>PowerPanel Webview</title>
<link rel="stylesheet" href="https://unpkg.com/xp.css">
</head>
<body style="background-color: gray;">
<div class="window">
<div class="title-bar">
<div class="title-bar-text">PowerPanel Info | Power Supply by: {{ title_dict['Power Supply by'] }} | Model: {{ title_dict['Model Name'] }} | Firmware: {{ title_dict['Firmware Number'] }}</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
{% for item in status_dict.keys() %}
<h3>{{ item }}</h3>
<p style="font-size:x-large">{{ status_dict[item] }}</p>
{% endfor %}
</div>
<div class="status-bar">
{% for item in info_dict.keys() %}
<p class="status-bar-field" style="font-size: large;">{{ item }}: {{ info_dict[item] }}</p>
{% endfor %}
</div>
</div>
</body>
</html>