33 lines
No EOL
1.1 KiB
HTML
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> |