src/Eccube/Resource/template/admin/login_frame.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. {#
  3. This file is part of EC-CUBE
  4. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  5. http://www.ec-cube.co.jp/
  6. For the full copyright and license information, please view the LICENSE
  7. file that was distributed with this source code.
  8. #}
  9. <html lang="ja">
  10. <head>
  11.     <meta charset="utf-8">
  12.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  13.     <title>{{ 'admin.login'|trans }} - {{ BaseInfo.shop_name }}</title>
  14.     <meta name="description" content="">
  15.     <meta name="author" content="">
  16.     <meta name="robots" content="noindex,nofollow"/>
  17.     <link rel="icon" href="{{ asset('assets/img/favicon.ico', 'admin') }}">
  18.     <link rel="stylesheet" href="{{ asset('assets/css/bootstrap.css', 'admin') }}">
  19.     <script src="{{ asset('admin.bundle.js', 'bundle') }}"></script>
  20. </head>
  21. <body id="login-page" class="bg-light">
  22. <noscript>
  23.     <p>{{ 'admin.login.enable_javascript'|trans }}</p>
  24. </noscript>
  25. <div class="c-container">
  26.     <div class="c-contentsArea">
  27.         {{ include('@admin/alert.twig') }}
  28.         {% block main %}{% endblock %}
  29.     </div>
  30. </div>
  31. <script src="{{ asset('assets/js/function.js', 'admin') }}"></script>
  32. {% block javascript %}{% endblock %}
  33. </body>
  34. </html>