-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforget.php
42 lines (33 loc) · 1.03 KB
/
forget.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include './import/basic.php';
include './import/login.php'
?>
</head>
<body class="bg-dark" data-bs-theme="dark">
<div class="vc login-box">
<div class="container ct shadow-lg p-3 mb-5 bg-dark rounded">
<h1 class="center">忘記密碼</h1>
<hr>
<form method="post" action="./forget.php">
<div class="mb-3">
<label for="resend-email" class="form-label">你的電子郵件</label>
<input type="email" class="form-control" id="resend-email"
placeholder="name@example.com" name="email">
</div>
<div class="col-auto ">
<p class="small float-start">
我們將會發送一個重設密碼的連結到你的信箱
</p>
<button type="submit" class="btn btn-primary mb-3 float-end btn-padding">確認</button>
</div>
</form>
</div>
</div>
</body>
</html>