use a instead of button,

update wiki link
This commit is contained in:
Arthur Lu 2024-04-18 19:04:45 +00:00
parent 578e540772
commit 2158cacd6c
3 changed files with 14 additions and 12 deletions

View File

@ -25,14 +25,14 @@
</p> </p>
<h3>Support Inquiries</h3> <h3>Support Inquiries</h3>
<p> If you are a user of tronnet, please refer to the <a href = "https://docs.tronnet.net/en/quick-support">documentation</a> for information about how to recieve technical support.</p> <p> If you are a user of tronnet, please refer to the <a href = "https://wiki.tronnet.net/">documentation</a> for information about how to recieve technical support.</p>
<h3>User Inquiries</h3> <h3>User Inquiries</h3>
<p> Tronnet does not publish private information of users, except those published in the <a href = "index.html"> User Directory</a>.</p> <p> Tronnet does not publish private information of users, except those published in the <a href = "index.html"> User Directory</a>.</p>
</div> </div>
<div class="btn-group"> <div class="btn-group">
<button onclick="window.location.href='index.html';">Return to Homepage</button> <a href='index.html'>Return to Homepage</a>
</div> </div>
</main> </main>
<footer><p>&copy; tronnet</p></footer> <footer><p>&copy; tronnet</p></footer>

View File

@ -60,12 +60,13 @@ footer p {
gap: 10px; gap: 10px;
} }
.btn-group button { .btn-group a {
background-color: #00ff00; /* Green background */ background-color: #00ff00; /* Green background */
color: black; /* White text */ color: black; /* White text */
padding: 10px; /* Some padding */ padding: 10px; /* Some padding */
cursor: pointer; /* Pointer/hand icon */ cursor: pointer; /* Pointer/hand icon */
border: none; border: none;
text-decoration: none;
} }
.btn-group button:hover { .btn-group button:hover {

View File

@ -16,23 +16,24 @@
<div class="center-div" style="max-width: 120ch;"> <div class="center-div" style="max-width: 120ch;">
<h3>Cluster Directory</h3> <h3>Cluster Directory</h3>
<div class="btn-group"> <div class="btn-group">
<button onclick="window.location.href='https://tronnet.net';">Cluster Homepage</button> <a href='https://tronnet.net'>Homepage</a>
<button onclick="window.location.href='https://paas.tronnet.net';">User Dashboard</button> <a href='https://paas.tronnet.net'>User Client</a>
<button onclick="window.location.href='https://opns.tronnet.net';">DMZ Opnsense</button> <a href='https://opns.tronnet.net'>Opnsense</a>
<button onclick="window.location.href='https://pve.tronnet.net';">DMZ Proxmox</button> <a href='https://pve.tronnet.net'>Proxmox</a>
<button onclick="window.location.href='https://status.tronnet.net';">Cluster Status</button> <a href='https://status.tronnet.net'>Status</a>
<button onclick="window.location.href='https://wiki.tronnet.net';">Cluster Documentation</button> <a href='https://wiki.tronnet.net'>Documentation</a>
<button onclick="window.location.href='https://mail.tronnet.net';">Tronnet Mail</button> <a href='https://mail.tronnet.net'>Mail</a>
<a href="https://git.tronnet.net">Git</a>
</div> </div>
<h3>User Directory</h3> <h3>User Directory</h3>
<div class="btn-group"> <div class="btn-group">
<button onclick="window.location.href='https://root.tronnet.net';">root</button> <a href='https://root.tronnet.net'>root</a>
</div> </div>
<h3>Information</h3> <h3>Information</h3>
<div class="btn-group"> <div class="btn-group">
<button onclick="window.location.href='contact.html';">Contact Us</button> <a href='contact.html'>Contact Us</a>
</div> </div>
</div> </div>
</main> </main>