tmpl.cp.first.user.html 1.8 KB

123456789101112131415161718192021222324252627282930313233
  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>Creating first user</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-first-user text-center">
  14. <form class="form-signin card" action="/cp/" method="post">
  15. <input type="hidden" name="action" value="first_user">
  16. <h1 class="h3 mb-3 font-weight-normal">Creating first user</h1>
  17. <label for="first_name" class="sr-only">User first name</label>
  18. <input type="text" id="first_name" name="first_name" class="form-control mb-3" placeholder="User first name">
  19. <label for="last_name" class="sr-only">User last name</label>
  20. <input type="text" id="last_name" name="last_name" class="form-control mb-3" placeholder="User last name">
  21. <label for="email" class="sr-only">User email</label>
  22. <input type="email" id="email" name="email" class="form-control mb-3" placeholder="User email" required>
  23. <label for="password" class="sr-only">User password</label>
  24. <input type="password" id="password" name="password" class="form-control mb-3" placeholder="User password" required>
  25. <div class="sys-messages"></div>
  26. <button class="btn btn-lg btn-primary btn-block" type="submit">Create</button>
  27. </form>
  28. <script src="{{$.System.PathJsJquery}}"></script>
  29. <script src="{{$.System.PathJsPopper}}"></script>
  30. <script src="{{$.System.PathJsBootstrap}}"></script>
  31. <script src="{{$.System.PathJsCpScripts}}"></script>
  32. </body>
  33. </html>