web/forgot-password.html

278 lines
7.9 KiB
HTML
Raw Normal View History

2021-09-16 07:50:52 +02:00
<!doctype html>
2021-09-13 06:54:02 +02:00
<html lang="en">
2021-09-16 07:50:52 +02:00
2021-09-13 06:54:02 +02:00
<head>
2021-09-16 07:50:52 +02:00
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta name="theme-color" content="#2f0001">
2021-09-26 18:20:30 +02:00
<link href="assets/favicon.webp" rel="shortcut icon" type="image/png" />
<title>Forgot Password</title>
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
2021-09-26 18:20:30 +02:00
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" rel="stylesheet">
<link href="https://fonts.googleapis.com" rel="preconnect">
<link crossorigin href="https://fonts.gstatic.com" rel="preconnect">
2021-09-13 06:54:02 +02:00
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
2021-09-16 07:50:52 +02:00
<script src="https://unpkg.com/feather-icons"></script>
<style>
body {
2021-09-13 06:54:02 +02:00
font-family: 'Poppins', sans-serif;
2021-09-16 07:50:52 +02:00
background-color: #1b1c1e;
2021-09-13 06:54:02 +02:00
}
.form-control {
background-color: #212226;
color: white;
}
.form-control:valid {
background-color: #212226;
color: white;
}
.form-control:invalid {
background-color: #2f0001;
color: white;
}
2021-09-16 07:50:52 +02:00
.nav-color {
2021-09-13 06:54:02 +02:00
background-color: #212226;
}
2021-09-16 07:50:52 +02:00
.nav-radius {
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
2021-09-13 06:54:02 +02:00
}
2021-09-16 07:50:52 +02:00
button[type="submit"] {
margin-bottom: 4%;
2021-09-13 06:54:02 +02:00
}
2021-09-16 08:06:25 +02:00
.btn-forgot {
2021-09-13 06:54:02 +02:00
width: 100%;
}
2021-09-16 08:06:25 +02:00
.hoverforgot-1 a {
2021-09-13 06:54:02 +02:00
color: white;
2021-09-16 07:50:52 +02:00
background-color: transparent;
position: center;
margin: auto;
text-align: center;
2021-09-13 06:54:02 +02:00
}
2021-09-16 08:06:25 +02:00
.hoverforgot-1 a:hover {
2021-09-16 07:50:52 +02:00
background-color: transparent;
2021-09-13 06:54:02 +02:00
color: white;
2021-09-16 07:50:52 +02:00
text-decoration: underline;
2021-09-13 06:54:02 +02:00
}
2021-09-16 07:50:52 +02:00
.card {
position: center;
margin: auto;
margin-top: 3%;
text-align: center;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
background-color: #212226;
2021-09-13 06:54:02 +02:00
}
2021-09-16 07:50:52 +02:00
.icon {
position: center;
margin: auto;
width: 100%;
height: 100%;
padding-bottom: 0%;
}
.form-check {
float: left;
}
.form .options-01 {
2021-09-16 07:50:52 +02:00
margin-bottom: 50px;
}
.form .options-01 input {
2021-09-16 07:50:52 +02:00
width: 15px;
height: 15px;
margin-right: 5px;
}
.form .options-01 .remember-me {
2021-09-16 07:50:52 +02:00
color: #bbb;
font-size: 6pt;
display: flex;
align-items: center;
float: left;
cursor: pointer;
word-break: keep-all;
}
.form .options-01 a {
2021-09-16 07:50:52 +02:00
color: #888;
font-size: 14px;
font-style: italic;
float: right;
text-align: right;
text-decoration: underline;
2021-09-13 06:54:02 +02:00
}
2021-09-16 07:50:52 +02:00
.text {
margin-bottom: -6%;
}
@media screen and (max-width: 425px) {
2021-09-26 18:20:30 +02:00
.card a,
input {
2021-09-16 07:50:52 +02:00
font-size: 3vw;
}
.card-header {
font-size: 6vw;
}
}
@media screen and (min-width: 426px) {
2021-09-26 18:20:30 +02:00
.card a,
input {
2021-09-16 07:50:52 +02:00
font-size: 2vw;
}
.card-header {
font-size: 5vw;
}
}
@media screen and (min-width: 767px) {
2021-09-26 18:20:30 +02:00
.card a,
input {
2021-09-16 07:50:52 +02:00
font-size: 2vw;
}
.card-header {
font-size: 4vw;
}
}
@media screen and (min-width: 993px) {
2021-09-26 18:20:30 +02:00
.card a,
input {
2021-09-16 07:50:52 +02:00
font-size: 1vw;
}
.card-header {
font-size: 2.5vw;
}
}
@media screen and (min-width: 1400px) {
2021-09-26 18:20:30 +02:00
.card a,
input {
2021-09-16 07:50:52 +02:00
font-size: 1vw;
}
.card-header {
font-size: 2.5vw;
}
}
@media screen and (max-width: 500px) {
.form {
width: 95%;
}
2021-09-16 07:50:52 +02:00
.form .user-input {
width: 100%
}
2021-09-16 07:50:52 +02:00
.form .btn {
width: 100%;
}
2021-09-16 07:50:52 +02:00
}
2021-09-24 08:58:02 +02:00
.btn-resetpassword {
width: 100%;
background-color: darkred;
border-color: darkred;
border-radius: 100px;
}
.btn-resetpassword:hover {
background-color: red;
border-color: red;
}
:focus {
outline: 0 !important;
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}
2021-09-13 06:54:02 +02:00
</style>
2021-09-26 15:50:23 +02:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.3.2/lazysizes.min.js"></script>
2021-09-13 06:54:02 +02:00
</head>
2021-09-16 07:50:52 +02:00
<body>
2021-09-26 18:20:30 +02:00
<nav class="navbar navbar-dark nav-color ml-5 mr-5 nav-radius">
<img alt="Banner" class="navbar-brand lazyload" src="assets/logo_transparent.webp" style="margin-top: 0%;"
width="5%">
<ul class="navbar-nav">
<li class="nav-item">
<a style="color: white; font-size: 16pt;">Forgot Password</a>
</li>
</ul>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01"></div>
</nav>
<div class="container">
<div class="row">
<div class="col">
<div class="card text-white col-md-8 col-lg-6 col-xl-5">
<h1 class="card-header text-white">Forgot Password</h1>
<lottie-player autoplay background="transparent" class="icon" loop speed="1"
src="https://assets9.lottiefiles.com/packages/lf20_xvrofzfk.json"></lottie-player>
<div class="py-3 text" style="padding: 0% 5%; text-align: center;">
<a>Enter your email to receive instructions on how to reset your password.</a>
</div>
<div class="card-body">
<form class="px-4 py-3">
<div class="form-group" style="text-align: left;">
<a data-feather="mail" href="" style="font-size: 40px;"></a>
<label for="exampleDropdownFormEmail1">Email</label>
<input class="form-control input-sm text-center" id="exampleDropdownFormEmail1"
placeholder="Email address" type="email">
</div>
<a href="otp.html"><input class="btn btn-resetpassword btn-primary" style="width: 100%;"
type="button" value="Reset Password"></a>
<br><br>
<div class="hoverforgot-1 text-center">
<a href="login.html">Or Return to Login</a>
</div>
</form>
</div>
2021-09-13 06:54:02 +02:00
</div>
2021-09-16 07:50:52 +02:00
</div>
2021-09-13 06:54:02 +02:00
</div>
</div>
2021-09-26 18:20:30 +02:00
</div>
<script>
feather.replace()
</script>
<script crossorigin="anonymous" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
src="https://code.jquery.com/jquery-3.5.1.slim.min.js">
2021-09-26 18:20:30 +02:00
</script>
<script crossorigin="anonymous" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns"
src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js">
2021-09-26 18:20:30 +02:00
</script>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
2021-09-13 06:54:02 +02:00
</body>
2021-09-16 07:50:52 +02:00
2021-09-13 06:54:02 +02:00
</html>