106 lines
4.6 KiB
HTML
106 lines
4.6 KiB
HTML
{if $action == ''}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
<meta name="description" content="" />
|
|
<meta name="author" content="" />
|
|
<title>Login - SB Admin</title>
|
|
<link href="css/styles.css" rel="stylesheet" />
|
|
<script src="all.js" crossorigin="anonymous"></script>
|
|
<script src="../jquery/jquery-3.4.1.min.js"></script>
|
|
<script src="../js/lottie_bodymovin/lottie.min.js"></script>
|
|
<style type="text/css">
|
|
.lottie-container {
|
|
justify-content: center;
|
|
top: 40px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 20px;
|
|
height: 180px;
|
|
pointer-events: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="navtop"></div>
|
|
{literal}
|
|
<script>
|
|
$(function(){
|
|
$("#footer").load("footer.php");
|
|
});
|
|
</script>
|
|
{/literal}
|
|
<div id="layoutAuthentication">
|
|
<div id="layoutAuthentication_content">
|
|
<main>
|
|
{if $index_error == '1'}
|
|
<div class="alert alert-warning" role="alert">
|
|
{$index_error_text}
|
|
</div>
|
|
{/if}
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-5">
|
|
<div class="card shadow-lg border-0 rounded-lg mt-5">
|
|
<div class="card-header">
|
|
<h3 class="text-center font-weight-light my-4">JU & MI Login</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<form action=?action=anmeld method="POST" name="login">
|
|
<div class="form-floating mb-3">
|
|
<input class="form-control" id="inputEmail" name="mail" type="email" placeholder="Mailadresse" />
|
|
<label for="inputEmail">Mailadresse</label>
|
|
</div>
|
|
<div class="form-floating mb-3">
|
|
<input class="form-control" id="inputPassword" name="password" type="password" placeholder="Passwort" />
|
|
<label for="inputPassword">Passwort</label>
|
|
</div>
|
|
<!--<div class="form-check mb-3">
|
|
<input class="form-check-input" id="inputRememberPassword" type="checkbox" value="" />
|
|
<label class="form-check-label" for="inputRememberPassword">Remember Password</label>
|
|
</div>
|
|
-->
|
|
<div class="d-flex align-items-center justify-content-between mt-4 mb-0">
|
|
<!--<a class="small" href="password.html">Forgot Password?</a>-->
|
|
|
|
<input type='submit' class="btn btn-primary" name='senden' value="Login">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="card-footer text-center py-3">
|
|
<!--<div class="small"><a href="register.html">Need an account? Sign up!</a></div>-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="lottie-container" id="lottie-container"></div>
|
|
<script type="text/javascript">
|
|
var item = bodymovin.loadAnimation({
|
|
wrapper: document.getElementById('lottie-container'),
|
|
animType: 'svg',
|
|
loop: true,
|
|
autoplay: true,
|
|
path: '../media/data.json'
|
|
});
|
|
</script>
|
|
</main>
|
|
</div>
|
|
<div id="layoutAuthentication_footer">
|
|
<!-- footer -->
|
|
<div id="footer"></div>
|
|
</div>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
|
|
<script src="js/scripts.js"></script>
|
|
</body>
|
|
</html>
|
|
{/if}
|
|
{if $action == 'anmeld'}
|
|
{if $index_login == '1'}
|
|
<meta http-equiv="refresh" content="0; URL=startseite.php">
|
|
{/if}
|
|
{/if} |