Skip to content

Commit

Permalink
git example_acdemo.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ddddrhhh committed Sep 19, 2024
1 parent dd8033b commit 7dd06e4
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions server/plugins/example/templates/example_acdemo.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to NHP Demo</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background-color: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
color: #4a4a4a;
font-size: 2.5rem;
margin-bottom: 1rem;
}
p {
color: #0066cc;
font-size: 1.8rem;
margin-top: 1rem;
font-weight: bold;
}
#message {
margin-top: 1rem;
color: green;
font-size: 1.5rem;
display: none;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to the Demo NHP-AC Server</h1>
<p>acdemo.opennhp.org</p>
<div><a href="https://dnschecker.org/port-scanner.php?query=acdemo.opennhp.org" target="_blank">Scan Its Ports &gt;&gt;</a></div>
<div id="message"></div>
</div>
</body>
</html>

0 comments on commit 7dd06e4

Please sign in to comment.