Modal Productive

Modal tema dark productive

MODAL

Código

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Stay Productive - Enepta</title>
  <!-- Bootstrap CSS -->
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
  <!-- Custom CSS -->
  <style>
    .modal-content {
      background-color: #1a1a2e;
      color: white;
      padding: 30px;
      border-radius: 10px;
    }
    .modal-header {
      border-bottom: none;
    }
    .modal-title {
      font-weight: bold;
      font-size: 1.8rem;
    }
    .modal-body img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .modal-footer {
      justify-content: space-between;
    }
    .btn-next {
      background-color: #00adb5;
      color: white;
      border: none;
      border-radius: 25px;
      padding: 8px 20px;
    }
    .btn-back {
      background-color: transparent;
      color: white;
      border: none;
      text-decoration: underline;
      padding: 8px 20px;
    }
    .step-counter {
      color: #6c757d;
      font-size: 0.9rem;
    }
  </style>
</head>
<body>

<!-- Button to Open Modal -->
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#productivityModal">
  Abrir Modal
</button>

<!-- Modal -->
<div class="modal fade" id="productivityModal" tabindex="-1" aria-labelledby="productivityModalLabel" aria-hidden="true">
  <div class="modal-dialog modal-md">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="btn-close text-light" data-bs-dismiss="modal" aria-label="Close"></button>
      </div>
      <div class="modal-body">
        <h2 class="modal-title">Get organized. Stay productive.</h2>
        <p>Track the progress of your projects from start to finish. Enepta keeps all your files, feedback, discussions, and meetings in one place.</p>
        <img src="https://via.placeholder.com/400x200" alt="Projects Overview">
        <p>No more searching through emails and chats for important feedback. Stay on track with Enepta's project management tools.</p>
      </div>
      <div class="modal-footer">
        <span class="step-counter">2 of 4</span>
        <button type="button" class="btn-back" data-bs-dismiss="modal">Back</button>
        <button type="button" class="btn-next">Next</button>
      </div>
    </div>
  </div>
</div>

<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>

</body>
</html>