mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-07-22 06:02:54 +00:00
1868738f56
- includes/desec-register.twig renders the multi-step deSEC flow: enter email (optionally an existing password), the awaiting-verification step, and the account-registered step, with friendly messaging for the ambiguous "email already registered" case (deSEC returns 202 either way to prevent enumeration). - containers.twig includes the deSEC section under the domain-entry UI; index.php passes the deSEC config/state (email, password, registered/awaiting flags) to the view. - Move the deSEC password reveal from an inline style to a CSS class (no inline CSS/JS in templates) and bump the style.css cache-buster to v13 in layout.twig and log.twig. Co-Authored-By: szaimen <42591237+szaimen@users.noreply.github.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: Simon L. <szaimen@e.mail.de>
25 lines
871 B
Twig
25 lines
871 B
Twig
<html lang="en">
|
|
<head>
|
|
<title>AIO</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="stylesheet" href="style.css?v13">
|
|
<link rel="stylesheet" href="logs.css?v1">
|
|
<link rel="icon" href="img/favicon.png">
|
|
<script src="apply-theme.js?v1"></script>
|
|
<script src="log-load.js?v1"></script>
|
|
</head>
|
|
<body data-container-id="{{ id }}">
|
|
<div id="floating-box">
|
|
<div class="loader"></div>
|
|
<div id="autoloading-box">
|
|
<div>
|
|
Automatic loading of new log data is
|
|
<span id="autoloading-status">enabled</span>.
|
|
</div>
|
|
<button id="autoloading-control">Disable</button>
|
|
</div>
|
|
</div>
|
|
<pre>{{ logContent }}</pre>
|
|
</body>
|
|
</html>
|