cp.login.html 1.3 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" action="/cp/" method="post">
  15. <h1 class="h3 mb-3 font-weight-normal">Please login</h1>
  16. <label for="login" class="sr-only">Email address</label>
  17. <input type="email" id="login" class="form-control" placeholder="Login" required autofocus>
  18. <label for="password" class="sr-only">Password</label>
  19. <input type="password" id="password" class="form-control" placeholder="Password" required>
  20. <div class="checkbox mb-3">
  21. <label><input type="checkbox" value="remember-me"> Remember me</label>
  22. </div>
  23. <button class="btn btn-lg btn-primary btn-block" type="submit">Login</button>
  24. </form>
  25. <script src="{{$.System.PathJsJquery}}"></script>
  26. <script src="{{$.System.PathJsPopper}}"></script>
  27. <script src="{{$.System.PathJsBootstrap}}"></script>
  28. </body>
  29. </html>