oxycardio/oxyapp/templates/auth/forgot-password.html
2020-12-22 11:10:20 +01:00

61 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<!-- Head -->
<head>
{% include 'head.html' %}
</head>
<!-- End of Head -->
<body class="bg-gradient-primary">
<div class="container">
<!-- Outer Row -->
<div class="row justify-content-center">
<div class="col-xl-10 col-lg-12 col-md-9">
<div class="card o-hidden border-0 shadow-lg my-5">
<div class="card-body p-0">
<!-- Nested Row within Card Body -->
<div class="row">
<div class="col-lg-6 d-none d-lg-block bg-password-image"></div>
<div class="col-lg-6">
<div class="p-5">
<div class="text-center">
<h1 class="h4 text-gray-900 mb-2">Mot de passe oublié ?</h1>
<p class="mb-4">We get it, stuff happens. Just enter your email address below and
we'll send you a link to reset your password!</p>
</div>
<form class="user">
<div class="form-group">
<input type="email" class="form-control form-control-user"
id="exampleInputEmail" aria-describedby="emailHelp"
placeholder="Entrez votre mot de passe">
</div>
<input type="submit" class="btn btn-primary btn-user btn-block">
</form>
<hr>
<div class="text-center">
<a class="small" href="register">Création de son compte !</a>
</div>
<div class="text-center">
<a class="small" href="login">Déjà un compte ? Connectez vous !</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>