<?php
include "includes/header.php";
?>
<style>
  .custom-button {
    padding: 10px 20px;
  }
</style>
<div class="container-fluid">
    <!-- Page Heading -->
    <h1 class="h3 mb-1 text-gray-800"> Themes</h1>
    <!-- Custom codes -->
    <div class="card border-left-primary shadow h-100 card shadow mb-4">
        <div class="card-header py-3">
            <h6 class="m-0 font-weight-bold text-primary"><i class="fa fa-cogs"></i> Choose</h6>
        </div>
        <div class="card-body">
  <style>
    .image-row {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
      padding-left: 20px;
      padding-right: 20px;
    }
    
    .image-container {
      margin: 0 10px;
      max-width: 100%;
      height: auto;
    }
    .horizontal-space {
      margin-right: 20px;
    }
    label, select, input {
            margin-left: 10px;
        }
    form {
            display: flex;
            justify-content: center;
        }
        
        
  </style>
  
  
  <?php
    if ($_SERVER['REQUEST_METHOD'] === 'POST') {
        $selectedOption = $_POST['options'];
        echo "You selected: " . $selectedOption;

        // Read existing JSON data from file
        $jsonData = file_get_contents('./a/rtx/Setting.json');
        $data = json_decode($jsonData, true);

        // Update first record in JSON data
        $data[0]["RTXSetting"] = "mLayout";
        $data[0]["PanalData"] = $selectedOption;

        // Encode the updated data back to JSON
        $jsonData = json_encode($data, JSON_PRETTY_PRINT);

        // Write the updated JSON data to file
        file_put_contents('./a/rtx/Setting.json', $jsonData);
    }
    ?>
    
    <form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
        <select name="options" width="300" id="options">
            <option value="theme_d">Tema 1</option>
            <option value="theme_2">Tema 2</option>
            <option value="theme_3">Tema 3</option>
            <option value="theme_5">Tema 4</option>
            <!-- Add more options here if needed -->
        </select>
        <br>
        <br>
        <input type="submit" class="horizontal-space btn btn-success btn-icon-split" value=" Submit ">
    </form>
        <br>
        <br>
      <div class="image-row">
            <div class="image-container">
              <p>Sem Banner</p>
              <img src="./img/tema_1.jpg" width="300" height="170" alt="Tema 1">
            </div>
            
            <div class="image-container">
                <p>Com banner pequeno final</p>
                <img src="./img/tema_2.jpg" width="300" height="170" alt="Tema 2">
            </div>
            
      </div>
      <div class="image-row">
            <div class="image-container">
              <p>Banner grande</p>
              <img src="./img/tema_3.jpg" width="300" height="170" alt="Tema 3">
            </div>
            
            <div class="image-container">
                <p>Banner pequeno início</p>
                <img src="./img/tema_4.jpg" width="300" height="170" alt="Tema 4">
            </div>
      </div>
  
  
</div>
</div>
</div>
<?php
include "includes/footer.php";
?>
</body>
</html>
