Files
cloudron-box/dashboard/oidc_login.html
T

24 lines
432 B
HTML
Raw Normal View History

2023-03-13 16:46:18 +01:00
<!DOCTYPE html>
2024-12-14 01:42:23 +01:00
<html lang="en">
<head>
2025-07-11 14:26:57 +02:00
<title><%= name %> Login</title>
2023-03-13 16:46:18 +01:00
2024-12-14 01:42:23 +01:00
<script>
window.cloudron = <%- JSON.stringify({
iconUrl: iconUrl,
name: name,
note: note,
submitUrl: submitUrl,
footer: footer,
language: language
}) %>;
2024-12-14 01:42:23 +01:00
</script>
2024-12-14 12:52:39 +01:00
2024-12-14 01:42:23 +01:00
</head>
2025-03-25 18:05:29 +01:00
2024-12-14 01:42:23 +01:00
<body>
<div id="app"></div>
<script type="module" src="/src/login.js"></script>
</body>
2023-03-11 17:22:27 +01:00
</html>