-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode-forgot-pass-page.php
27 lines (26 loc) · 1.06 KB
/
code-forgot-pass-page.php
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
<?php session_start(); ?>
<!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.0">
<title>Quên mật khẩu</title>
<?php include './assets/include/framework.php'; ?>
<link rel="stylesheet" href="./assets/css/forgot-pass.css">
</head>
<body class="text-center">
<main class="form-signin">
<?php include './assets/include/check.php'; ?>
<form method="post" action="./assets/PHP/code-forgot-pass.php" enctype="multipart/form-data">
<i class="fas fa-unlock-alt icon-recovery"></i>
<h1 class="h3 mb-3 fw-normal">Nhập mã được gửi từ email của bạn</h1>
<div class="form-floating">
<input type="text" class="form-control" id="floatingInput" name="codeget" placeholder="Mã lấy lại mật khẩu" required>
<label for="floatingInput">Mã lấy lại mật khẩu</label>
</div>
<button class="w-100 btn btn-lg btn-primary" type="submit">Nhập</button>
</form>
</main>
</body>
</html>