-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot.php
38 lines (34 loc) · 930 Bytes
/
forgot.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
<?php
require 'backend/forgotBackend.php';
?>
<!--
forgot.php
StockExperience
Edited by BinarySoftware on 07/03/2019.
Copyright ©2019 BinarySoftware/Maciej Mikołajek. All rights reserved.
Purpose: Give user possibility to reset forgotten password provided correct e-mail
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Wyzeruj hasło</title>
<?php include 'css/css.html'; ?>
</head>
<body>
<div class="form">
<h1>Wyzeruj hasło</h1>
<form action="forgot.php" method="post">
<div class="field-wrap">
<label>
Adres email<span class="req">*</span>
</label>
<input type="email"required autocomplete="off" name="email"/>
</div>
<button class="button button-block"/>Zeruj hasło</button>
</form>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>