-
Notifications
You must be signed in to change notification settings - Fork 0
/
recuperarSenha.php
56 lines (53 loc) · 1.5 KB
/
recuperarSenha.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
52
53
54
55
56
<?php
session_start();
include('src/meta.php');
?>
<!DOCTYPE html>
<html>
<head>
<title>Recuperar senha</title>
</head>
<body style="margin-top: 0em;">
<div class="container" style="text-align: center;">
<div class="row">
<div class="col-sm" style="text-align: center;">
<img src="img/logo_staffast.png" width="300">
</div>
</div>
<div class="row" style="margin-top: 0.8em;">
<div class="col-sm" >
<h2 class="high-text">Recuperação de acesso</h2>
</div>
</div>
<hr class="hr-divide-super-light">
<div class="row">
<div class="col-sm">
<form action="database/recuperarSenha.php" method="POST">
<label class="text" for="email">E-mail</label>
<input type="email" name="email" class="all-input" required="">
</div>
</div>
<div class="row">
<div class="col-sm">
<input type="submit" value="Mande-me uma nova senha" class="button button1">
</div>
</form>
</div>
<?php
if(isset($_SESSION['msg'])) {
?>
<div class="row">
<div class="col-sm">
<div class="alert alert-info alert-dismissible fade show" role="alert">
<?php echo $_SESSION['msg']; unset($_SESSION['msg']); ?>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
<?php
}
?>
</div>
</html>