tmpl.cp.login.html 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="theme-color" content="#205081" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <title>Please login</title>
  8. <link rel="stylesheet" href="{{$.System.PathCssBootstrap}}">
  9. <link rel="stylesheet" href="{{$.System.PathCssCpStyles}}">
  10. <link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" />
  11. <style type="text/css">html{height:100%;}</style>
  12. </head>
  13. <body class="cp-login text-center">
  14. <form class="form-signin card" action="/cp/" method="post">
  15. <input type="hidden" name="action" value="signin">
  16. <h1 class="h3 mb-3 font-weight-normal">Please login</h1>
  17. <label for="email" class="sr-only">User email</label>
  18. <input type="email" id="email" name="email" class="form-control" placeholder="User email" required autofocus>
  19. <label for="password" class="sr-only">User password</label>
  20. <input type="password" id="password" name="password" class="form-control mb-3" placeholder="User password" required>
  21. <div class="sys-messages"></div>
  22. <button class="btn btn-lg btn-primary btn-block" type="submit">Login</button>
  23. </form>
  24. <script src="{{$.System.PathJsJquery}}"></script>
  25. <script src="{{$.System.PathJsPopper}}"></script>
  26. <script src="{{$.System.PathJsBootstrap}}"></script>
  27. <script src="{{$.System.PathJsCpScripts}}"></script>
  28. </body>
  29. </html>