-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot-pw.html
53 lines (47 loc) · 2.22 KB
/
forgot-pw.html
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
52
53
<!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">
<!--Favicon-->
<link rel="icon" type="image/png" sizes="32x32" href="src/images/favicon-32x32.png">
<!--Bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!--Google fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap" rel="stylesheet">
<!--Internal links-->
<link rel="stylesheet" href="src/forgot-pw.css">
<title>Forgot Password | Tree of Life</title>
</head>
<body>
<div class="container">
<div class="panel">
<div class="welcome-img">
<h1>Tree of Life</h1>
<img src="/src/images/login-img.png" alt="Drawing of a doctor with patient">
</div>
<div class="login">
<h3>Forgot your password?</h3>
<p>For this demonstration, there is no password. You can login with any characters typed in both of the
username and password.</p>
<button><a href="index.html">Back</a></button>
</div>
</div>
<footer>
This web page was made by
<a href="https://github.com/Bishu11" target=”_blank”>Bishu11</a>,
<a href="https://github.com/cslylla" target=”_blank”>cslylla</a>,
<a href="https://github.com/Divya1205" target=”_blank”>Divya1205</a> and
<a href="https://snezhanabogeva.myportfolio.com/work" target=”_blank”>Snezhana</a>
</footer>
</div>
<!--Bootstrap-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"></script>
</body>
</html>