mirror of
https://github.com/Quackster/Havana.git
synced 2025-07-04 13:47:45 +00:00
35 lines
No EOL
1.2 KiB
Smarty
35 lines
No EOL
1.2 KiB
Smarty
{% include "housekeeping/base/header.tpl" %}
|
|
<body>
|
|
{% set roomCreateBadgesActive = " active" %}
|
|
{% include "housekeeping/base/navigation.tpl" %}
|
|
<h1 class="mt-4">Create Room Badge</h1>
|
|
{% include "housekeeping/base/alert.tpl" %}
|
|
<p>Create a room entry badge that will be given to the user as soon as they enter the room.</p>
|
|
<form class="table-responsive col-md-4" method="post">
|
|
<div class="form-group">
|
|
<label>Room ID</label>
|
|
<input type="text" class="form-control" name="roomid">
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Badge Code</label>
|
|
<input type="text" class="form-control" name="badgecode">
|
|
</div>
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-info">Create Entry Badge</button>
|
|
</div>
|
|
</form>
|
|
</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" %} |