-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,9 @@ | |
<li class="nav-item"> | ||
<a class="nav-link" href="javascript:void(0);" onclick="openConverter('password-gen')">Password Gen</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="javascript:void(0);" onclick="openConverter('gamertag')">Gamer Tag</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
@@ -396,6 +399,15 @@ <h1 class="mb-4">Password Generator</h1> | |
<div id="passwordDisplay" class="mt-3 text-center bg-light p-3 rounded"></div> | ||
</div> | ||
|
||
<!--gamer tag--> | ||
<div class="container py-5" style="display:none;" id="gamertag"> | ||
<h1 class="text-center mb-4">Gamer Tag Generator</h1> | ||
<div class="text-center mb-4"> | ||
<button id="genButton" class="btn btn-lg btn-success">Generate Gamer Tag</button> | ||
</div> | ||
<div id="nameDisplay" class="text-center display-4 fw-bold"></div> | ||
</div> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script> | ||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | ||
|