MIF_E31222713/resources/views/forgot.blade.php

96 lines
5.6 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="76x76" href="../assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="../assets/img/favicon.png">
<title>
Sony Nursery || Login
</title>
<!-- Fonts and icons -->
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
<!-- Nucleo Icons -->
<link rel="stylesheet" href="https://unpkg.com/bootstrap@5.3.3/dist/css/bootstrap.min.css">
</head>
<body class="bg-light">
<div class="container position-sticky z-index-sticky top-0">
</div>
<main class="main-content mt-5">
<!-- Password Reset 8 - Bootstrap Brain Component -->
<section class="bg-light p-3 p-md-4 p-xl-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-xxl-11">
<div class="card border-light-subtle shadow-sm">
<div class="row g-0">
<div class="col-12 col-md-6">
<img class="img-fluid rounded-start w-100 h-100 object-fit-cover" loading="lazy"
src="{{ asset('assets/logo.png') }}" alt="Welcome back you've been missed!">
</div>
<div class="col-12 col-md-6 d-flex align-items-center justify-content-center">
<div class="col-12 col-lg-11 col-xl-10">
<div class="card-body p-3 p-md-4 p-xl-5">
<div class="row">
<div class="col-12">
<div class="mb-5">
<div class="text-center mb-4">
</div>
<h2 class="h4 text-center">Password Reset</h2>
<h3 class="fs-6 fw-normal text-secondary text-center m-0">
Provide the email address associated with your account to
recover your password.</h3>
</div>
</div>
</div>
<form action="{{ route('update-password') }}" method="POST">
@csrf
<div class="row gy-3 overflow-hidden">
<div class="col-12">
<div class="form-floating mb-3">
<input type="email" class="form-control" name="email"
id="email" placeholder="name@example.com" required>
<label for="email" class="form-label">Email</label>
</div>
<div class="form-floating mb-3">
<input type="password" class="form-control" name="password"
id="password" placeholder="name@example.com" required>
<label for="password" class="form-label">Password</label>
</div>
</div>
<div class="col-12">
<div class="d-grid">
<button class="btn btn-dark btn-lg"
type="submit">Continue</button>
</div>
</div>
<!-- Tombol kembali ke Sign In -->
<div class="col-12 mt-3">
<div class="text-center">
<a href="{{ route('login') }}"
class="btn btn-outline-secondary">
Kembali ke Sign In
</a>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Core JS Files -->
</body>
</html>