|
@@ -14,6 +14,9 @@
|
|
|
<strong>Messages</strong>
|
|
|
</a>
|
|
|
</div>
|
|
|
+ <a th:if="${#authorization.expression('isAuthenticated()')}" href="/logout" class="navbar-brand d-flex align-items-center" style="float:right;font-size:90%;">
|
|
|
+ <strong>Logout</strong>
|
|
|
+ </a>
|
|
|
</div>
|
|
|
</header>
|
|
|
<main>
|
|
@@ -35,36 +38,6 @@
|
|
|
|
|
|
</main>
|
|
|
|
|
|
- <div class="modal fade" id="newMeetingModal" role="dialog" aria-labelledby="newMeetingModal" aria-hidden="true">
|
|
|
- <div class="modal-dialog modal-lg">
|
|
|
- <div class="modal-content">
|
|
|
- <div class="modal-header">
|
|
|
- <h5 class="modal-title">New Meeting</h5>
|
|
|
- <button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
|
|
|
- <span aria-hidden="true">×</span>
|
|
|
- </button>
|
|
|
- </div>
|
|
|
- <div class="modal-body">
|
|
|
- <div class="container-fluid">
|
|
|
- <form id="newMeetingForm" enctype='multipart/form-data' method="POST" action="/" style="margin-top:25px;">
|
|
|
- <div class="form-group">
|
|
|
- <label>Subject</label>
|
|
|
- <input class="form-control" type="text" value="" name="subject">
|
|
|
- </div>
|
|
|
- <div class="form-group">
|
|
|
- <label>Date</label>
|
|
|
- <input class="form-control" type="text" value="" name="date" placeholder="DD/MM/YYYY HH:MM">
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="modal-footer">
|
|
|
- <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
|
|
|
- <button class="btn btn-success" type="submit" form="newMeetingForm">Confirm</button>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
|
|
|
<script src="/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
</body>
|