mirror of
https://github.com/Quackster/Havana.git
synced 2025-07-03 05:07:46 +00:00
31 lines
No EOL
1.2 KiB
Smarty
31 lines
No EOL
1.2 KiB
Smarty
{% include "housekeeping/base/header.tpl" %}
|
|
<body>
|
|
{% set searchTransactionsActive = " active " %}
|
|
{% include "housekeeping/base/navigation.tpl" %}
|
|
<h1 class="mt-4">Transaction Lookup</h1>
|
|
{% include "housekeeping/base/alert.tpl" %}
|
|
<p>Lookup transaction by a specific user, either enter their user ID or username. Will display all transaction in the past month.</p>
|
|
<form class="table-responsive col-md-4" method="post">
|
|
<div class="form-group">
|
|
<label for="searchQuery">Player name or ID</label>
|
|
<input type="text" name="searchQuery" class="form-control" id="searchQuery" placeholder="Looking for...">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Perform Search</button>
|
|
</form>
|
|
<br>
|
|
{% include "housekeeping/transaction/search_results.tpl" %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
|
|
<script src="https://blackrockdigital.github.io/startbootstrap-simple-sidebar/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<script>
|
|
$("#menu-toggle").click(function(e) {
|
|
e.preventDefault();
|
|
$("#wrapper").toggleClass("toggled");
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
{% include "housekeeping/base/footer.tpl" %} |