48 lines
1.3 KiB
HTML
48 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" type="image/x-icon" href="/static/images/favicon.ico">
|
|
<link rel="stylesheet" href="/static/css/styles.css">
|
|
<link rel="stylesheet" href="/static/fontawesome/css/all.min.css">
|
|
|
|
<style>
|
|
.activation-message {
|
|
text-align: center;
|
|
font-size: 1.5em;
|
|
color: #ff1493; /* Neon pink/red color */
|
|
}
|
|
|
|
.activation-message a {
|
|
color: blue; /* Blue color for the link */
|
|
text-decoration: none;
|
|
}
|
|
|
|
.activation-message a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.activation-message .primary-message {
|
|
margin-bottom: 20px;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="navbar"></div>
|
|
<script>
|
|
fetch('/static/html/nav.html')
|
|
.then(response => response.text())
|
|
.then(data => {
|
|
document.getElementById('navbar').innerHTML = data;
|
|
});
|
|
</script>
|
|
|
|
<div class="activation-message">
|
|
<p class="primary-message">This software is not activated!</p>
|
|
<p>Please go to the <a href="/about">about</a> page to activate this software.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|