-
Notifications
You must be signed in to change notification settings - Fork 4
/
exito.php
39 lines (36 loc) · 1.02 KB
/
exito.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
<?php session_start();
ob_start();
require 'routes/routes.php';
if (isset($_SESSION['user'])) {
header('Refresh: 5; url=' . route_admin);
}else{
header('Refresh: 5; url=' . route_index);
}
ob_end_flush();
?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<?php include 'views/layouts/head_common.php'; ?>
</head>
<body>
<?php include 'views/layouts/header.php'; ?>
<div class="background-container">
<div class="main-section col-xs-10 row">
<header class="presentation col-xs-12">
<article class="col-xs-12 text-center division-container">
<h2 class="title">OPERACIÓN EXITOSA</h2>
<small class="text">Espera un segundo, pronto serás redirigido...</small>
</article>
<div class="clearfix"></div>
<div class="division">
<i class="flecha-down"><i class="flecha-down2"></i></i>
</div>
</header>
</div>
</div>
<?php include 'views/layouts/footer.php'; ?>
<?php include 'views/layouts/foot_common.php'; ?>
</body>
</html>