✏️ 正在编辑: layout_reset.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/layouts/scripts/layout_reset.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php echo $this->doctype() ?> <?php $timeCssFile = filemtime(APPLICATION_PATH . "/../public/styles/global.min.css"); ?> <html> <head> <meta charset="UTF-8" /> <title>Yuppie tech - Mais agilidade para o seu negócio!</title> <?php $this->headLink() ->appendStylesheet($this->baseUrl('styles/global.min.css?' . $timeCssFile)) ->appendStylesheet($this->baseUrl("specific/client.css")) ->prependStylesheet($this->baseUrl('styles/print.css'), 'print') ->prependStylesheet($this->baseUrl() . '/styles/swal.min.css'); echo $this->headLink(); ?> <script> localStorage.clear(); </script> <script> var baseUrl = '<?php echo $this->baseUrl(); ?>'; </script> <script src='https://www.google.com/recaptcha/api.js' async defer></script> </head> <body class="bg_login"> <div id="container"> <div id="logo_login"></div> <h1>Alteração de Senha</h1> <div id="content_login"> <div id="messages"><?php echo $this->flashMessenger(); ?></div> <?php echo $this->layout()->content; ?> <p class="clear"></p> </div> </div> <?php $this->jQuery()->enable() ->setLocalPath($this->baseUrl() . '/scripts/jquery/jquery.min.js') ->uiDisable(); echo $this->jQuery(); $this->jQuery()->enable() ->setLocalPath($this->baseUrl() . '/scripts/swal.min.js') ->uiDisable(); echo $this->jQuery(); $this->jQuery()->enable() ->setLocalPath($this->baseUrl() . '/scripts/reset-password.min.js') ->uiDisable(); echo $this->jQuery(); ?> </body> </html>
💾 保存文件
← 返回文件管理器