Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"ai_assistant.request.env": "ppe",
"ai_assistant.request.ppe": "ppe_trae_seed_code_dogfood"
}
4 changes: 4 additions & 0 deletions css/sb-admin-2.css
Original file line number Diff line number Diff line change
Expand Up @@ -11279,3 +11279,7 @@ footer.sticky-footer .copyright {
body.sidebar-toggled footer.sticky-footer {
width: 100%;
}

body.sidebar-toggled #wrapper #content-wrapper {
margin-left: 0;
}
137 changes: 75 additions & 62 deletions forgot-password.html
Original file line number Diff line number Diff line change
@@ -1,75 +1,90 @@
<!DOCTYPE html>
<!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="">
<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>SB Admin 2 - Forgot Password</title>

<!-- Custom fonts for this template-->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet">
href="vendor/fontawesome-free/css/all.min.css"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet"
/>

<!-- Custom styles for this template-->
<link href="css/sb-admin-2.min.css" rel="stylesheet">

</head>

<body class="bg-gradient-primary">
<link href="css/sb-admin-2.min.css" rel="stylesheet" />
</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">Forgot Your Password?</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="Enter Email Address...">
</div>
<a href="login.html" class="btn btn-primary btn-user btn-block">
Reset Password
</a>
</form>
<hr>
<div class="text-center">
<a class="small" href="register.html">Create an Account!</a>
</div>
<div class="text-center">
<a class="small" href="login.html">Already have an account? Login!</a>
</div>
</div>
</div>
</div>
<!-- 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">
Forgot Your Password?
</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" action="login.html" method="POST">
<div class="form-group">
<input
type="email"
class="form-control form-control-user"
id="exampleInputEmail"
name="email"
required
aria-describedby="emailHelp"
placeholder="Enter Email Address..."
/>
</div>
<button
type="submit"
class="btn btn-primary btn-user btn-block"
>
Reset Password
</button>
</form>
<hr />
<div class="text-center">
<a class="small" href="register.html"
>Create an Account!</a
>
</div>
<div class="text-center">
<a class="small" href="login.html"
>Already have an account? Login!</a
>
</div>
</div>
</div>

</div>
</div>

</div>
</div>

</div>
</div>

<!-- Bootstrap core JavaScript-->
Expand All @@ -81,7 +96,5 @@ <h1 class="h4 text-gray-900 mb-2">Forgot Your Password?</h1>

<!-- Custom scripts for all pages-->
<script src="js/sb-admin-2.min.js"></script>

</body>

</html>
</body>
</html>
Loading