This repository has been archived by the owner on Nov 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfermaMail.php
67 lines (59 loc) · 2.21 KB
/
confermaMail.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
57
58
59
60
61
62
63
64
65
66
67
<?php
require_once(__DIR__ . '/class/autoload.inc.php');
try {
if (!\FabLabRomagna\Firewall::controllo()) {
\FabLabRomagna\Firewall::firewall_redirect();
}
} catch (Exception $e) {
\FabLabRomagna\Log::crea(null, 3, '/confermaMail.php', 'page_request',
'Impossibile completare la richiesta.', (string)$e);
reply(500, 'Internal Server Error');
}
?>
<!DOCTYPE html>
<html>
<head>
<?php
require_once('./inc/header.inc.php');
?>
</head>
<body>
<?php
include_once('./inc/nav.inc.php');
$id = isset($_GET['id']) ? trim($_GET['id']) : '';
$codice = isset($_GET['c']) ? trim($_GET['c']) : '';
if (!preg_match('/^[0-9]{1,11}$/', $id) || !preg_match('/^[0-9a-f]{13}$/', $codice)):
?>
<div class="contenuto">
<h1 class="title is-1 has-text-centered">Errore</h1>
<h3 class="subtitle is-3 has-text-centered">ID utente o codice di attivazione non valido.</h3>
</div>
<?php
else:
$utente = \FabLabRomagna\Utente::ricerca(array(
new \FabLabRomagna\SQLOperator\Equals('id_utente', (int)$id),
new \FabLabRomagna\SQLOperator\Equals('codice_attivazione', $codice)
));
if (count($utente) === 1):
$utente->risultato[0]->set_campo('codice_attivazione', null);
?>
<div class="contenuto">
<h1 class="title is-1 has-text-centered">Fantastico!</h1>
<h3 class="subtitle is-3 has-text-centered">Hai verificato correttamente il tuo indirizzo
email.</h3>
<h3 class="subtitle is-3 has-text-centered">Ora puoi effettuare l'accesso.</h3>
</div>
<?php
else:
?>
<div class="contenuto">
<h1 class="title is-1 has-text-centered">Errore</h1>
<h3 class="subtitle is-3 has-text-centered">ID utente o codice di attivazione non valido.</h3>
</div>
<?php
endif;
endif;
include_once('inc/footer.inc.php');
?>
</body>
</html>