-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcust_reset_success.php
More file actions
41 lines (36 loc) · 1.73 KB
/
cust_reset_success.php
File metadata and controls
41 lines (36 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<?php session_start(); include("conn_db.php"); include('head.php');?>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/login.css" rel="stylesheet">
<title>Reset Successfully | EATERIO</title>
</head>
<body class="d-flex flex-column h-100">
<header class="navbar navbar-light fixed-top bg-light shadow-sm mb-auto">
<div class="container-fluid mx-4">
<a href="index.php">
<img src="img/LOGO_BLACK.png" width="125" class="me-2" alt="EATERIO Logo">
</a>
</div>
</header>
<div class="mt-5"></div>
<div class="container form-signin text-center reg-success mt-auto">
<i class="mt-4 bi bi-check-circle text-success h1 display-2"></i>
<h3 class="mt-2 mb-3 fw-normal text-bold">Your password is reset successfully!</h3>
<p class="mb-3 fw-normal text-bold">Please log in to your account with new password.</p>
<a class="btn btn-success btn-sm w-50" href="index.php">Return to Home</a>
</div>
<footer
class="footer d-flex flex-wrap justify-content-between align-items-center px-5 py-3 mt-auto bg-secondary text-light">
<span class="smaller-font">© 2021 SeriousEater Group<br /><span class="xsmall-font">Paphana Y. Sirada C.
Thanakit L.</span></span>
<ul class="nav justify-content-end list-unstyled d-flex">
<li class="ms-3"><a class="text-light" target="_blank" href="https://github.com/waterthatfrozen/EATERIO"><i
class="bi bi-github"></i></a></li>
</ul>
</footer>
</body>
</html>