Skip to content
This repository was archived by the owner on Sep 20, 2025. It is now read-only.

Commit 912d5e9

Browse files
committed
Add missing HTML from admin dashboard template
1 parent 3d00f32 commit 912d5e9

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

frontend/src/AdminDashboardRoute.jsx

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,27 @@ const AdminDashboardRoute = () => (
1212
<Footer/>
1313
</div>
1414
</div>
15-
<a class="scroll-to-top rounded" href="#page-top">
16-
<i class="fas fa-angle-up"></i>
15+
<a className="scroll-to-top rounded" href="#page-top">
16+
<i className="fas fa-angle-up"></i>
1717
</a>
18+
<div className="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
19+
aria-hidden="true">
20+
<div className="modal-dialog" role="document">
21+
<div className="modal-content">
22+
<div className="modal-header">
23+
<h5 className="modal-title" id="exampleModalLabel">Ready to Leave?</h5>
24+
<button className="close" type="button" data-dismiss="modal" aria-label="Close">
25+
<span aria-hidden="true">×</span>
26+
</button>
27+
</div>
28+
<div className="modal-body">Select "Logout" below if you are ready to end your current session.</div>
29+
<div className="modal-footer">
30+
<button className="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button>
31+
<a className="btn btn-primary" href="login.html">Logout</a>
32+
</div>
33+
</div>
34+
</div>
35+
</div>
1836
</>
1937
)
2038

0 commit comments

Comments
 (0)