Guest User

Untitled

a guest
Nov 8th, 2021
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.52 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <!-- Required meta tags -->
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7.  
  8. <!-- Bootstrap CSS -->
  9. <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  10. <!-- Font Awesome -->
  11. <link
  12. href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
  13. rel="stylesheet"
  14. />
  15. <!-- Google Fonts -->
  16. <link
  17. href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
  18. rel="stylesheet"
  19. />
  20. <!-- MDB -->
  21. <link
  22. href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.6.0/mdb.min.css"
  23. rel="stylesheet"
  24. />
  25.  
  26. <title>Hello, world!</title>
  27. </head>
  28. <body>
  29. <section class="vh-100" style="background-color: #eee;">
  30. <div class="container h-100">
  31. <div class="row d-flex justify-content-center align-items-center h-100">
  32. <div class="col-lg-12 col-xl-11">
  33. <div class="card text-black" style="border-radius: 25px;">
  34. <div class="card-body p-md-5">
  35. <div class="row justify-content-center">
  36. <div class="col-md-10 col-lg-6 col-xl-5 order-2 order-lg-1">
  37.  
  38. <p class="text-center h1 fw-bold mb-5 mx-1 mx-md-4 mt-4">Sign up</p>
  39.  
  40. <form class="mx-1 mx-md-4">
  41.  
  42. <div class="d-flex flex-row align-items-center mb-4">
  43. <i class="fas fa-user fa-lg me-3 fa-fw"></i>
  44. <div class="form-outline flex-fill mb-0">
  45. <input type="text" id="form3Example1c" class="form-control" />
  46. <label class="form-label" for="form3Example1c">Your Name</label>
  47. </div>
  48. </div>
  49.  
  50. <div class="d-flex flex-row align-items-center mb-4">
  51. <i class="fas fa-envelope fa-lg me-3 fa-fw"></i>
  52. <div class="form-outline flex-fill mb-0">
  53. <input type="email" id="form3Example3c" class="form-control" />
  54. <label class="form-label" for="form3Example3c">Your Email</label>
  55. </div>
  56. </div>
  57.  
  58. <div class="d-flex flex-row align-items-center mb-4">
  59. <i class="fas fa-lock fa-lg me-3 fa-fw"></i>
  60. <div class="form-outline flex-fill mb-0">
  61. <input type="password" id="form3Example4c" class="form-control" />
  62. <label class="form-label" for="form3Example4c">Password</label>
  63. </div>
  64. </div>
  65.  
  66. <div class="d-flex flex-row align-items-center mb-4">
  67. <i class="fas fa-key fa-lg me-3 fa-fw"></i>
  68. <div class="form-outline flex-fill mb-0">
  69. <input type="password" id="form3Example4cd" class="form-control" />
  70. <label class="form-label" for="form3Example4cd">Repeat your password</label>
  71. </div>
  72. </div>
  73.  
  74. <div class="form-check d-flex justify-content-center mb-5">
  75. <input
  76. class="form-check-input me-2"
  77. type="checkbox"
  78. value=""
  79. id="form2Example3c"
  80. />
  81. <label class="form-check-label" for="form2Example3">
  82. I agree all statements in <a href="#!">Terms of service</a>
  83. </label>
  84. </div>
  85.  
  86. <div class="d-flex justify-content-center mx-4 mb-3 mb-lg-4">
  87. <button type="button" class="btn btn-primary btn-lg">Register</button>
  88. </div>
  89.  
  90. </form>
  91.  
  92. </div>
  93. <div class="col-md-10 col-lg-6 col-xl-7 d-flex align-items-center order-1 order-lg-2">
  94.  
  95. <img src="https://mdbootstrap.com/img/Photos/new-templates/bootstrap-registration/draw1.png" class="img-fluid" alt="Sample image">
  96.  
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. </div>
  103. </div>
  104. </section>
  105.  
  106. <!-- Optional JavaScript; choose one of the two! -->
  107.  
  108. <!-- Option 1: Bootstrap Bundle with Popper -->
  109. <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
  110.  
  111. <!-- Option 2: Separate Popper and Bootstrap JS -->
  112. <!--
  113. <script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
  114. <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
  115. -->
  116. </body>
  117. </html>
Advertisement
Add Comment
Please, Sign In to add comment