You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
3.9 KiB
91 lines
3.9 KiB
<!doctype html> |
|
<html lang="en"> |
|
|
|
<head> |
|
<meta charset="utf-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
<meta name="description" content="JavaScript web interface for ThanOS API"> |
|
<meta name="author" content="rudi@nightmare.haus"> |
|
<link rel="icon" href="https://cdn.discordapp.com/avatars/688025671968096341/7ad6b70b550cec8fb9dba7cec489838e.png?size=32"> |
|
|
|
<title>Thanos2</title> |
|
<!-- Bootstrap core CSS --> |
|
<link href="https://getbootstrap.com/docs/4.0/dist/css/bootstrap.min.css" rel="stylesheet"> |
|
|
|
<!-- Custom styles for this template --> |
|
<link href="https://getbootstrap.com/docs/4.0/examples/starter-template/starter-template.css" rel="stylesheet"> |
|
|
|
<!-- My imports --> |
|
<link href="./static/index.css" rel="stylesheet"> |
|
|
|
<!-- End of my imports --> |
|
|
|
</head> |
|
|
|
<body> |
|
|
|
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top"> |
|
<a class="navbar-brand" href="https://git.nightmare.haus/rudi/disgord-Thanos">ThanOS</a> |
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" |
|
aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation"> |
|
<span class="navbar-toggler-icon"></span> |
|
</button> |
|
|
|
|
|
<div class="collapse navbar-collapse" id="navbarsExampleDefault"> |
|
<ul class="navbar-nav mr-auto"> |
|
<li class="nav-item active" id="archive-link"> |
|
<a class="nav-link" href="?mode=verifications">Archive <span class="sr-only">(current)</span></a> |
|
</li> |
|
<li class="nav-item" id="pending-link"> |
|
<a class="nav-link" href="?mode=pending">Pending</a> |
|
</li> |
|
<li class="nav-item" id="status-link"> |
|
<a class="nav-link disabled" href="?mode=status">Status</a> |
|
</li> |
|
</ul> |
|
<form class="form-inline my-2 my-lg-0" id="search-form"> |
|
<input class="form-control mr-sm-2" id="search-bar" type="text" placeholder="Search Verifications" |
|
aria-label="Search"> |
|
<button class="btn btn-outline-success my-2 my-sm-0" id="search-button" type="submit" onclick="searchPage()">Search</button> |
|
</form> |
|
</div> |
|
</nav> |
|
<!-- The Modal --> |
|
<div id="myModal" class="modal"> |
|
|
|
<!-- Modal content --> |
|
<div class="modal-content"> |
|
<div class="container"> |
|
<span class="close">×</span> |
|
<div class="row"> |
|
<div class="col-sm"> |
|
<img id="modal-avatar" alt="Avatar"> |
|
<p id="modal-join"></p> |
|
<p id="modal-userID"></p> |
|
</div> |
|
<div class="col-sm"> |
|
<img id="modal-verification" alt="Avatar" style="width: 100%;"> |
|
</div> |
|
|
|
</div> |
|
</div> |
|
</div> |
|
|
|
</div> |
|
<div id="main-app" style="display: flex; flex-wrap: wrap;"> |
|
</div> |
|
<script src="./static/components.js"></script> |
|
<script src="./static/app.js"></script> |
|
<!-- Bootstrap core JavaScript |
|
================================================== --> |
|
<!-- Placed at the end of the document so the pages load faster --> |
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" |
|
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" |
|
crossorigin="anonymous"></script> |
|
<script>window.jQuery || document.write('<script src="https://getbootstrap.com/docs/4.0/assets/js/vendor/jquery-slim.min.js"><\/script>')</script> |
|
<script src="https://getbootstrap.com/docs/4.0/assets/js/vendor/popper.min.js"></script> |
|
<script src="https://getbootstrap.com/docs/4.0/dist/js/bootstrap.min.js"></script> |
|
</body> |
|
|
|
</html> |