-
Notifications
You must be signed in to change notification settings - Fork 1
/
accedi.php
36 lines (28 loc) · 890 Bytes
/
accedi.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
<?php
$title = "Accedi - Onoranze Stecca";
$page = "accedi";
$description = "Accedi al tuo account per scrivere messaggi di cordoglio e gestire le tue informazioni personali.";
$keywords = "accedi, Onoranze Stecca, login, account, messaggi, informazioni personali, accesso";
$script = "validate";
require "php/backend/auth.php";
session_start();
if (is_logged()) {
if (is_admin())
header("Location: dashboard.php");
else
header("Location: account.php");
}
$template = (file_get_contents('html/accedi.html'));
$err = isset($_SESSION['error-login']) ? $_SESSION['error-login'] : null;
session_write_close();
session_abort();
include "php/template/header.php";
try {
if (isset($err))
$template = str_replace("<!-- errors -->", $err, $template);
echo $template;
} catch (Exception $e) {
server_error();
}
include "php/template/footer.php";
?>