-
Notifications
You must be signed in to change notification settings - Fork 1
/
confere-codigo.php
54 lines (48 loc) · 1.7 KB
/
confere-codigo.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
<?php
require_once("verificaLogoff.php");
$codigoEnviado = $_GET['codigo'];
echo $codigoEnviado;
?>
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="img/favicon.png">
<title>Stock Planner - Recupera senha</title>
<meta charset="utf-8">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css" >
<!-- Ícones do material design -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Alertify -->
<link rel="stylesheet" href="css/alertify.min.css" >
<!-- Default theme for alertify -->
<link rel="stylesheet" href="css/default-theme-alertify.min.css" >
<!-- CSS da página -->
<link rel="stylesheet" href="css/login.css" >
</head>
<body>
<div class="modal-login">
<!--<form class="form-signin">-->
<div class="row">
<div class="col-12">
<h3>Insira o código de recuperação</h3>
</div>
</div>
<div class="row mb-3">
<div class="col-12">
<div class="form-label-group">
<label for="input" class="label-invisivel">Códido</label>
<input type="text" id="input" class="form-control" placeholder="Código" autofocus>
</div>
</div>
</div>
<div class="row botoes-login">
<div class="col-6"></div>
<div class="col-6">
<a href="nova-senha.php"><button class="btn botoes-login btn-primary btn-block mb-2" type="submit">Enviar</button></a>
</div>
</div>
<!--</form>-->
</div>
</body>
</html>