mirror of
https://gitlab.com/nekoya/web.git
synced 2025-03-13 11:18:30 +01:00
Modified Forgot Password Page
This commit is contained in:
parent
91d5ae1b1f
commit
5a5064bd2b
2 changed files with 215 additions and 80 deletions
|
@ -1,103 +1,235 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Forgot Password</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
|
||||
<script src="https://unpkg.com/feather-icons"></script>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" type="image/png" href="assets/favicon.png"/>
|
||||
<title>Forgot Password Page</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
|
||||
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
<script src="https://unpkg.com/feather-icons"></script>
|
||||
|
||||
body{
|
||||
--base-color: rgb(56,60,68);
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background-color: #212226;
|
||||
background-color: #1b1c1e;
|
||||
}
|
||||
|
||||
.nav-color {
|
||||
background-color: #1b1c1e;
|
||||
}
|
||||
.card-2 {
|
||||
background-color: black;
|
||||
margin-top: 4%;
|
||||
margin-bottom: 2%;
|
||||
margin-right: 35%;
|
||||
margin-left: 35%;
|
||||
}
|
||||
|
||||
.btn-login {
|
||||
width: 100%;
|
||||
margin-top: -8%;
|
||||
}
|
||||
|
||||
.return-login {
|
||||
margin-left: 0%;
|
||||
text-align: center;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.return-login a {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.return-login a:hover {
|
||||
color: white;
|
||||
background-color: #212226;
|
||||
}
|
||||
|
||||
.nav-radius {
|
||||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
}
|
||||
|
||||
button[type="submit"] {
|
||||
margin-bottom: 4%;
|
||||
}
|
||||
|
||||
.btn-register {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.hoverlogin-1 a {
|
||||
color: white;
|
||||
background-color: transparent;
|
||||
position: center;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hoverlogin-1 a:hover {
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
.icon {
|
||||
position: center;
|
||||
margin: auto;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding-bottom: 0%;
|
||||
}
|
||||
|
||||
.form-check {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.form .options-01{
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.form .options-01 input{
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.form .options-01 .remember-me{
|
||||
color: #bbb;
|
||||
font-size: 6pt;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
float: left;
|
||||
cursor: pointer;
|
||||
word-break: keep-all;
|
||||
|
||||
}
|
||||
|
||||
.form .options-01 a{
|
||||
color: #888;
|
||||
font-size: 14px;
|
||||
font-style: italic;
|
||||
float: right;
|
||||
text-align: right;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.text {
|
||||
margin-bottom: -6%;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 425px) {
|
||||
.card a, input {
|
||||
font-size: 3vw;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 6vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 426px) {
|
||||
.card a, input {
|
||||
font-size: 2vw;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 5vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 767px) {
|
||||
.card a, input {
|
||||
font-size: 2vw;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 4vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 993px) {
|
||||
.card a, input {
|
||||
font-size: 1vw;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 2.5vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1400px) {
|
||||
.card a, input {
|
||||
font-size: 1vw;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 2.5vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 500px){
|
||||
.form{
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
.form .user-input{
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.form .btn{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="bg-color">
|
||||
|
||||
<nav class="navbar navbar-dark nav-color ml-5 mr-5 nav-radius">
|
||||
<img class="navbar-brand" src="assets/logo_transparent.png" alt="Banner" width="5%" style="margin-top: 0%;">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<a style="color: white; font-size: 16pt;">Forgot Password Page</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="collapse navbar-collapse" id="navbarTogglerDemo01"></div>
|
||||
</nav>
|
||||
|
||||
<div class="card card-2 text-white bg-dark mb-3" style="border-radius: 30px;">
|
||||
<div class="card-header" style="text-align: center; font-size: 24pt">Forgot Password</div>
|
||||
<body>
|
||||
<nav class="navbar navbar-dark nav-color ml-5 mr-5 nav-radius">
|
||||
<img class="navbar-brand" src="assets/logo_transparent.png" alt="Banner" width="5%" style="margin-top: 0%;">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<a style="color: white; font-size: 16pt;">Forgot Password Page</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="collapse navbar-collapse" id="navbarTogglerDemo01"></div>
|
||||
</nav>
|
||||
|
||||
<img src="assets/logo_transparent.png" alt="" width="40%" style="margin-left: 30%; margin-top: 0%;">
|
||||
<div class="py-3" 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">
|
||||
<div class="form-group">
|
||||
<a href="" data-feather="mail" style="font-size: 40px;"></a>
|
||||
<label for="exampleDropdownFormEmail1">Email</label>
|
||||
<input type="email" class="form-control" id="exampleDropdownFormEmail1" placeholder="Email address">
|
||||
<br>
|
||||
|
||||
<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 src="https://assets9.lottiefiles.com/packages/lf20_xvrofzfk.json" class="icon"
|
||||
background="transparent"
|
||||
speed="1" loop autoplay></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>
|
||||
<br>
|
||||
<a href="otp.html"><input type="button" value="Reset Password" class="btn btn-login btn-primary"></a>
|
||||
<div class="return-login">
|
||||
<a class="return" href="login.html">Or Return to Login</a>
|
||||
<div class="card-body">
|
||||
<form class="px-4 py-3">
|
||||
<div class="form-group" style="text-align: left;">
|
||||
<a href="" data-feather="mail" style="font-size: 40px;"></a>
|
||||
<label for="exampleDropdownFormEmail1">Email</label>
|
||||
<input type="email" id="exampleDropdownFormEmail1"
|
||||
class="form-control input-sm text-center" placeholder="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-register btn-primary">Reset Password</button>
|
||||
|
||||
<div class="hoverlogin-1 text-center">
|
||||
<a href="register.html">Or Return to Login</a>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script>
|
||||
feather.replace()
|
||||
</script>
|
||||
<script>
|
||||
feather.replace()
|
||||
</script>
|
||||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
|
||||
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
|
||||
</script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous">
|
||||
</script>
|
||||
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -54,6 +54,8 @@
|
|||
.card {
|
||||
position: center;
|
||||
margin: auto;
|
||||
margin-top: 1%;
|
||||
margin-bottom: 1%;
|
||||
text-align: center;
|
||||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
|
@ -65,8 +67,8 @@
|
|||
.icon {
|
||||
position: center;
|
||||
margin: auto;
|
||||
width: 70%;
|
||||
height: 70%;
|
||||
width: 65%;
|
||||
height: 65%;
|
||||
padding-bottom: 0%;
|
||||
}
|
||||
|
||||
|
@ -197,13 +199,14 @@
|
|||
<a href="" data-feather="mail" style="font-size: 40px;"></a>
|
||||
<label for="exampleDropdownFormEmail1">Email</label>
|
||||
<input type="email" id="exampleDropdownFormEmail1"
|
||||
class="form-control input-sm text-center" placeholder="Email">
|
||||
class="form-control input-sm text-center" placeholder="Email address">
|
||||
</div>
|
||||
<div class="form-group" style="text-align: left;">
|
||||
<a href="" data-feather="lock" style="font-size: 40px;"></a>
|
||||
<label for="exampleDropdownFormPassword1">Password</label>
|
||||
<input type="password" id="exampleDropdownFormPassword1"
|
||||
class="form-control input-sm text-center" placeholder="Password">
|
||||
<br>
|
||||
<div class="options-01 hoverlogin-1" style="word-break: keep-all;">
|
||||
<label class="remember-me text-left"><input type="checkbox" name="">Remember me</label>
|
||||
<a href="forgot-password.html" style="margin-left: 14%; font-size: 10pt;">Forgot your password?</a>
|
||||
|
|
Loading…
Add table
Reference in a new issue