-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecovery.html
34 lines (34 loc) · 1.64 KB
/
recovery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="Vendors/JQuery/jquery-3.4.1.min.js"></script>
<script src="Vendors/KevCloud/kevcloud.js"></script>
<script src="Scripts/config.js"></script>
<script src="Scripts/app.js" id="app" data-pageType="default" data-translations="recovery-translation"></script>
<link rel="stylesheet" type="text/css" href="Content/CSS/default.css">
<script src="Scripts/general.js" id="general"></script>
<script src="Scripts/mailer.js"></script>
<script src="Scripts/Pages/recovery.js"></script>
<!-- TODO: keep or remove this stylesheet link? - Kevin Breurken -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="Content/CSS/Pages/recovery.css">
<title>Fasten Your Seatbelts</title>
</head>
<body>
<header></header>
<div class="container">
<div class="content-wrapper">
<h1 id="form-title" data-translate="recovery.password">Recover password</h1>
<div class="inputs">
<label for="email">Email:</label>
<input type="email" name="email" placeholder="[email protected]" id="recovery-email">
</div>
<div class="button-options">
<button type="button" class="back-btn" id="cancelbtn" onclick="redirectBack()" data-translate="recovery.cancel">cancel</button>
<button type="submit" class="back-btn" id="sendbtn" onclick="emailValidation()" data-translate="recovery.send">Send</button>
</div>
</div>
</div>
</body>
</html>