mirror of
https://github.com/Myxelium/Lunaris2.0.git
synced 2026-07-07 21:45:07 +00:00
Add scheduler
This commit is contained in:
55
Bot/wwwroot/index.html
Normal file
55
Bot/wwwroot/index.html
Normal file
@@ -0,0 +1,55 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Logotype Page</title>
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
height: 100vh;
|
||||
background-color: #121212; /* Dark background */
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: #d3d3d3; /* Very light gray text */
|
||||
font-family: Arial, sans-serif;
|
||||
text-align: center;
|
||||
}
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.logotype img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
max-height: 200px;
|
||||
margin-bottom: 20px;
|
||||
box-shadow: 0px 0px 20px 20px black;
|
||||
}
|
||||
a {
|
||||
color: #d3d3d3;
|
||||
text-decoration: none;
|
||||
font-size: 18px;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="logotype">
|
||||
<img src="logotype.png" alt="Logotype">
|
||||
</div>
|
||||
<a href="/" id="hangfire-link">Go to Hangfire</a>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// Update the link dynamically to include the current URL + /hangfire
|
||||
const currentUrl = window.location.href;
|
||||
document.getElementById('hangfire-link').href = currentUrl + 'hangfire';
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user