Advertisement
sourav8256

Untitled

Jul 30th, 2023
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>My Ecommerce App - Register</title>
  5. <!-- Add the Bootstrap CSS link -->
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
  7. </head>
  8. <body>
  9. <div class="container mt-5">
  10. <div class="row justify-content-center">
  11. <div class="col-md-6">
  12. <div class="card">
  13. <div class="card-header">
  14. <h3 class="text-center">Register</h3>
  15. </div>
  16. <div class="card-body">
  17. <form>
  18. <div class="form-group">
  19. <label for="username">Username</label>
  20. <input type="text" class="form-control" id="username" placeholder="Enter username" required>
  21. </div>
  22. <div class="form-group">
  23. <label for="email">Email</label>
  24. <input type="email" class="form-control" id="email" placeholder="Enter email" required>
  25. </div>
  26. <div class="form-group">
  27. <label for="password">Password</label>
  28. <input type="password" class="form-control" id="password" placeholder="Enter password" required>
  29. </div>
  30. <div class="form-group">
  31. <label for="confirmPassword">Confirm Password</label>
  32. <input type="password" class="form-control" id="confirmPassword" placeholder="Confirm password" required>
  33. </div>
  34. <div class="text-center">
  35. <button type="submit" class="btn btn-primary">Register</button>
  36. </div>
  37. </form>
  38. </div>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43.  
  44. <!-- Add the Bootstrap JS and jQuery links -->
  45. <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
  46. <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.6.0/dist/umd/popper.min.js"></script>
  47. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
  48. </body>
  49. </html>
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement