cp.mysql.html 1.7 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>Configure MySQL</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-mysql text-center">
  14. {{$.System.BlockModalSysMsg}}
  15. <form class="form-signin" action="/cp/" method="post">
  16. <input type="hidden" name="action" value="mysql">
  17. <h1 class="h3 mb-3 font-weight-normal">Configure MySQL</h1>
  18. <label for="host" class="sr-only">Host</label>
  19. <input type="text" id="host" name="host" class="form-control mb-3" placeholder="Host" value="localhost" required>
  20. <label for="name" class="sr-only">Name</label>
  21. <input type="text" id="name" name="name" class="form-control mb-3" placeholder="Name" required autofocus>
  22. <label for="user" class="sr-only">User</label>
  23. <input type="text" id="user" name="user" class="form-control mb-3" placeholder="User" required>
  24. <label for="password" class="sr-only">Password</label>
  25. <input type="password" id="password" name="password" class="form-control mb-3" placeholder="Password">
  26. <button class="btn btn-lg btn-primary btn-block" type="submit">Configure</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>