You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
405 B

<?php
include "config/core.php";
use app\Provider\Crypt;
$jsStartup = [];
$crypt = new Crypt('aes-256-cbc', CONF_CRYPT_PASSWORD);
$localStorage[] = sprintf("localStorage.setItem('_token', '%s')", password_hash($crypt->encrypt() . time(), PASSWORD_DEFAULT));
?>
<!DOCTYPE html>
<html lang="pt-br" class="h-100">
<?php include "app/View/header.php"; ?>
<?php include "app/View/content.php"; ?>
</html>