Passwort zurücksetzen
This commit is contained in:
96
templates/modern/dashboard/passwortvergessen.html
Normal file
96
templates/modern/dashboard/passwortvergessen.html
Normal file
@ -0,0 +1,96 @@
|
||||
{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>JU & MI Passwort vergessen</title>
|
||||
<link href="css/styles.css" rel="stylesheet" />
|
||||
<script src="js/all.js" crossorigin="anonymous"></script>
|
||||
<script src="../jquery/jquery-3.4.1.min.js"></script>
|
||||
<link href="../bootstrap/node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<script src="../bootstrap/node_modules/bootstrap/dist/js/bootstrap.bundle.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() {
|
||||
$("#mail_pwvergessen").focus();
|
||||
});
|
||||
|
||||
$(function(){
|
||||
$("#footer").load("footer.php");
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
<div id="layoutAuthentication">
|
||||
<div id="layoutAuthentication_content">
|
||||
<main>
|
||||
<!--Anwendung-->
|
||||
<script src="../js/components/admin_login.js"></script>
|
||||
<div class="lottie-container" id="lottie-container"></div>
|
||||
<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">Passwort vergessen</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="form-floating mb-3">
|
||||
<input class="form-control" name="mail_pwvergessen" id="mail_pwvergessen" type="email" onkeydown="keysave(this)" placeholder="Mailadresse" />
|
||||
<label for="inputEmail">Mailadresse</label>
|
||||
</div>
|
||||
</div>
|
||||
<input type='submit' class="btn btn-primary" onclick="passwortvergessen();" name='senden' value="Neues Passwort">
|
||||
</div>
|
||||
<div id="msg"></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>
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
function keysave(ele) {
|
||||
if(event.key === 'Enter') {
|
||||
passwortvergessen();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
{/literal}
|
||||
</div>
|
||||
<div id="layoutAuthentication_footer">
|
||||
<!-- footer -->
|
||||
<div id="footer"></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
Reference in New Issue
Block a user