Skip to content

Commit

Permalink
Add VIAaaS address generator properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Jo0001 committed Mar 23, 2024
1 parent 943960e commit 9201e74
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 1 deletion.
1 change: 1 addition & 0 deletions ViaSuite.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="index.html">ViaSetup</a></li>
<li><a class="dropdown-item" href="aspirin.html">VIAaaS address generator</a></li>
</ul>
</li>
</ul>
Expand Down
53 changes: 52 additions & 1 deletion aspirin.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,66 @@
<meta charset="UTF-8">
<title>VIAaaS address generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="128x128" href="https://avatars.githubusercontent.com/u/42077435?s=128">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
<style>
.container {
margin-top: 60px;
background-color: rgba(77, 77, 77, 0.84);
color: white;
padding: 20px;
}
body {
background-image: url("img/background3.webp");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="ViaSuite.html"><img src="img/logotext-small.png"
alt="Via logo" height="32"> ViaVersion</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="ViaSuite.html">ViaSuite</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://discord.gg/viaversion">Discord</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/ViaVersion">Github</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Tools
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="index.html">ViaSetup</a></li>
<li><a class="dropdown-item active" href="#">VIAaaS address generator</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="container">
<br>
<div class="row my-3 p-3 fs-4 rounded">This tool helps you to generate an address for VIAaaS</div>
<form id="parts" onsubmit="update()" oninput="update()">
<div class="input-group mb-2">
<label class="input-group-text" for="back">Backend Address</label>
Expand Down
Binary file added img/background3.webp
Binary file not shown.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item active" aria-current="page" href="index.html">ViaSetup</a></li>
<li><a class="dropdown-item" href="aspirin.html">VIAaaS address generator</a></li>
</ul>
</li>
</ul>
Expand Down

0 comments on commit 9201e74

Please sign in to comment.