mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-21 10:50:10 +00:00
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/d51a2637-5128-4c8a-a18c-a86085d2cb88 aio-interface: do not cache the containers, logs and setup screen as it shows credentials Signed-off-by: Simon L. <szaimen@e.mail.de> fix: address PR review comments - remove inline script (CSP), use default font string Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/62e290a3-94de-4988-aeb8-b577fec135a7 Co-Authored-By: szaimen <42591237+szaimen@users.noreply.github.com>
25 lines
782 B
Twig
25 lines
782 B
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>AIO</title>
|
|
<link rel="stylesheet" href="style.css?v10" media="all" />
|
|
<link rel="icon" href="img/favicon.png">
|
|
<script type="text/javascript" src="forms.js?v2"></script>
|
|
<script type="text/javascript" src="toggle-dark-mode.js?v2"></script>
|
|
<script type="text/javascript" src="click-handlers.js?v2"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
<div id="overlay">
|
|
<div class="loader"></div>
|
|
<iframe name="overlay-log" id="overlay-log"></iframe>
|
|
</div>
|
|
<button id="theme-toggle">
|
|
<span id="theme-icon"></span>
|
|
</button>
|
|
</body>
|
|
</html>
|