50 lines
2.3 KiB
PHP
50 lines
2.3 KiB
PHP
<?php
|
||
|
||
require_once dirname(__DIR__) . '/bootstrap.php';
|
||
|
||
session_start();
|
||
$_SESSION['after_login'] = $_SERVER['REQUEST_URI'];
|
||
$_SESSION['acceso'] = TRUE;
|
||
if (empty($_SESSION['logged'])) {
|
||
header('Location: ' . legacy_config('routes.login_url', '../login.php'));
|
||
exit;
|
||
}
|
||
|
||
require_once dirname(__DIR__) . '/db/conn.php';
|
||
|
||
?>
|
||
|
||
<!DOCTYPE html>
|
||
<html lang="es">
|
||
<head>
|
||
|
||
<!-- Basic Page Needs
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta charset="utf-8">
|
||
<title>Nuevo Producto</title>
|
||
<meta name="description" content="Carga rápida de productos - Natural - Mercado de Vida">
|
||
<meta name="author" content="rikrdo.es">
|
||
|
||
<!-- Mobile Specific Metas
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
||
<!-- FONT
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
|
||
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
|
||
|
||
<!-- CSS
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link rel="stylesheet" href="./css/normalize.css?<?php echo filemtime('./css/normalize.css') ?>" type="text/css">
|
||
<link rel="stylesheet" href="./css/skeleton.css?<?php echo filemtime('./css/skeleton.css') ?>" type="text/css">
|
||
<link rel="stylesheet" href="./css/modal.css?<?php echo filemtime('./css/modal.css') ?>" type="text/css">
|
||
<link rel="stylesheet" href="./css/custom.css?<?php echo filemtime('./css/custom.css') ?>" type="text/css">
|
||
|
||
<!-- Favicon
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link rel="icon" type="image/png" href="../images/favicon.png">
|
||
|
||
</head>
|
||
<body>
|