sign-up.html 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta4
  5. * @link https://tabler.io
  6. * Copyright 2018-2021 The Tabler Authors
  7. * Copyright 2018-2021 codecalm.net Paweł Kuna
  8. * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
  9. -->
  10. <html lang="en">
  11. <head>
  12. <meta charset="utf-8"/>
  13. <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
  14. <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
  15. <title>Sign up - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
  16. <!-- CSS files -->
  17. <link href="./dist/css/tabler.min.css" rel="stylesheet"/>
  18. <link href="./dist/css/tabler-flags.min.css" rel="stylesheet"/>
  19. <link href="./dist/css/tabler-payments.min.css" rel="stylesheet"/>
  20. <link href="./dist/css/tabler-vendors.min.css" rel="stylesheet"/>
  21. <link href="./dist/css/demo.min.css" rel="stylesheet"/>
  22. </head>
  23. <body class="antialiased border-top-wide border-primary d-flex flex-column">
  24. <div class="page page-center">
  25. <div class="container-tight py-4">
  26. <div class="text-center mb-4">
  27. <a href="."><img src="./static/logo.svg" height="36" alt=""></a>
  28. </div>
  29. <form class="card card-md" action="." method="get">
  30. <div class="card-body">
  31. <h2 class="card-title text-center mb-4">Create new account</h2>
  32. <div class="mb-3">
  33. <label class="form-label">Name</label>
  34. <input type="text" class="form-control" placeholder="Enter name">
  35. </div>
  36. <div class="mb-3">
  37. <label class="form-label">Email address</label>
  38. <input type="email" class="form-control" placeholder="Enter email">
  39. </div>
  40. <div class="mb-3">
  41. <label class="form-label">Password</label>
  42. <div class="input-group input-group-flat">
  43. <input type="password" class="form-control" placeholder="Password" autocomplete="off">
  44. <span class="input-group-text">
  45. <a href="#" class="link-secondary" title="Show password" data-bs-toggle="tooltip"><!-- Download SVG icon from http://tabler-icons.io/i/eye -->
  46. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><circle cx="12" cy="12" r="2" /><path d="M22 12c-2.667 4.667 -6 7 -10 7s-7.333 -2.333 -10 -7c2.667 -4.667 6 -7 10 -7s7.333 2.333 10 7" /></svg>
  47. </a>
  48. </span>
  49. </div>
  50. </div>
  51. <div class="mb-3">
  52. <label class="form-check">
  53. <input type="checkbox" class="form-check-input"/>
  54. <span class="form-check-label">Agree the <a href="./terms-of-service.html" tabindex="-1">terms and policy</a>.</span>
  55. </label>
  56. </div>
  57. <div class="form-footer">
  58. <button type="submit" class="btn btn-primary w-100">Create new account</button>
  59. </div>
  60. </div>
  61. </form>
  62. <div class="text-center text-muted mt-3">
  63. Already have account? <a href="./sign-in.html" tabindex="-1">Sign in</a>
  64. </div>
  65. </div>
  66. </div>
  67. <!-- Libs JS -->
  68. <!-- Tabler Core -->
  69. <script src="./dist/js/tabler.min.js"></script>
  70. </body>
  71. </html>