-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot-password.php
51 lines (41 loc) · 1.32 KB
/
forgot-password.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
43
44
45
46
47
48
49
50
51
<html lang="en">
<head>
<title>SWALLOW | Metadata Ingestion System</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link href="./styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!------ Include the above in your HEAD tag ---------->
<div class="wrapper fadeInDown">
<div id="formContent">
<!-- Tabs Titles -->
<!-- Icon -->
<div>
<div>
<br />
<img src="images/logo-image.png">
<h5>Metadata Management System</h5>
</div>
<br />
<p>
Please input your email. <br />
A temporary password would be sent to you.
</p>
<br />
</div>
<!-- Login Form -->
<form action="Controller/forgot-password.php" method="POST">
<input type="text" id="email" name="email" placeholder="email">
<input type="submit" value="Send">
</form>
<div id="formFooter">
<a class="underlineHover" href="index.php">Back to the main page</a>
</div>
</div>
</div>
</body>
</html>