Files
cloudron-box/dashboard/setupaccount.html

28 lines
648 B
HTML
Raw Normal View History

2020-02-05 15:05:34 +01:00
<!DOCTYPE html>
2025-03-28 21:48:52 +01:00
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
2020-02-05 15:05:34 +01:00
2025-03-28 21:48:52 +01:00
<title>Cloudron Account Setup</title>
2020-02-05 15:05:34 +01:00
2025-03-28 21:48:52 +01:00
<link rel="icon" href="/api/v1/cloudron/avatar">
<link rel="apple-touch-icon" href="/api/v1/cloudron/avatar">
2020-02-05 15:05:34 +01:00
2025-03-28 21:48:52 +01:00
<style>
@media (prefers-color-scheme: dark) {
body {
background-color: black;
}
}
</style>
2020-02-05 15:05:34 +01:00
2025-03-28 21:48:52 +01:00
</head>
2020-02-05 15:05:34 +01:00
2025-03-28 21:48:52 +01:00
<body>
<div id="app"></div>
<script type="module" src="/src/setupaccount.js"></script>
</body>
2020-02-05 15:05:34 +01:00
</html>