Files
cloudron-box/dashboard/passwordreset.html

29 lines
707 B
HTML
Raw Normal View History

2023-06-15 16:26:06 +02:00
<!DOCTYPE html>
<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" />
2023-06-15 16:26:06 +02:00
<title>Cloudron Password Reset</title>
2023-06-15 16:26:06 +02:00
<link rel="icon" href="/api/v1/cloudron/avatar">
<link rel="apple-touch-icon" href="/api/v1/cloudron/avatar">
2023-06-15 16:26:06 +02:00
<style>
@media (prefers-color-scheme: dark) {
body {
background-color: black;
}
}
</style>
2023-06-15 16:26:06 +02:00
<script type="module" src="./src/style.js"></script>
</head>
2023-06-15 16:26:06 +02:00
<body>
<div id="app"></div>
<script type="module" src="/src/passwordreset.js"></script>
</body>
2023-06-15 16:26:06 +02:00
</html>