Created login system

This commit is contained in:
TheGreyDiamond
2021-05-30 00:42:03 +02:00
parent 6e3104eef3
commit 14189365e0
8 changed files with 744 additions and 147 deletions

View File

@@ -36,6 +36,19 @@
<div class="container-login100">
<div class="wrap-login100">
<% if(it.error == true) { %>
<div class="alert" id="alert">
<span class="closebtn" id="closeBtn">&times;</span>
<%= it.errorMessage %>
</div>
<script>
$("#closeBtn").click(function () {
$("#alert").fadeOut("slow", function () {
// Animation complete.
});
});
</script>
<% } %>
<div>
<a href="/"><i class="fas fa-arrow-left"></i> Back</a>