Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
68 righe
2.3 KiB
68 righe
2.3 KiB
<?php |
|
|
|
/** |
|
* @var \App\View\AppView $this |
|
* @var \CakeLte\View\Helper\CakeLteHelper $this->CakeLte |
|
*/ |
|
|
|
?> |
|
|
|
<!DOCTYPE html> |
|
<html lang="en"> |
|
|
|
<head> |
|
<meta charset="utf-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
<title><?= $this->fetch('title') . ' | ' . strip_tags($this->CakeLte->getConfig('app-name')) ?></title> |
|
|
|
<?= $this->Html->meta('icon') ?> |
|
<?= $this->fetch('meta') ?> |
|
|
|
<!-- Google Font: Source Sans Pro --> |
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback"> |
|
<!-- Font Awesome Icons --> |
|
<?= $this->Html->css('/adminlte/plugins/fontawesome-free/css/all.min.css') ?> |
|
<!-- Theme style --> |
|
<?= $this->Html->css('/adminlte/dist/css/adminlte.min.css') ?> |
|
<?= $this->Html->css('CakeLte.style') ?> |
|
<?= $this->Html->css('idrocap-styles') ?> |
|
<?= $this->element('CakeLte.extra/css') ?> |
|
<?php if (isset($hideLogin) && $hideLogin): ?> |
|
<?= $this->Html->css('citizen-registration.css') ?> |
|
<?php endif; ?> |
|
<?= $this->fetch('css') ?> |
|
</head> |
|
|
|
<body class="hold-transition login-page"> |
|
<div class="login-box" style="width: 80%;padding:2rem"> |
|
<div class="login-logo"> |
|
<b><?= $this->CakeLte->getConfig('app-name') ?></b> |
|
</div> |
|
<div class="login-logo"> |
|
<span class="logo-lg"><img src="<?= \Cake\Core\Configure::read('Theme.logo') ?>" width="125" height="125" |
|
class="brandlogo-image"></span> |
|
</div> |
|
<!-- /.login-logo --> |
|
<div class="login-card-body"> |
|
<?= $this->fetch('content') ?> |
|
<center> |
|
<div class="mt-3"> |
|
<?= $this->Html->link(__('Torna al login'), ['controller' => 'Users', 'action' => 'login'], ['class' => 'btn btn-info']) ?> |
|
</div> |
|
</center> |
|
</div> |
|
</div> |
|
<!-- /.login-box --> |
|
|
|
<!-- jQuery --> |
|
<?= $this->Html->script('/adminlte/plugins/jquery/jquery.min.js') ?> |
|
<!-- Bootstrap 4 --> |
|
<?= $this->Html->script('/adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js') ?> |
|
<!-- AdminLTE App --> |
|
<?= $this->Html->script('/adminlte/dist/js/adminlte.min.js') ?> |
|
|
|
<?= $this->element('CakeLte.extra/script') ?> |
|
<?= $this->fetch('script') ?> |
|
</body> |
|
|
|
</html>
|