Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1"> | |
| <title>Configurator</title> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="styles.css"> | |
| <!-- Telegram Web App Script --> | |
| <script src="https://telegram.org/js/telegram-web-app.js"></script> | |
| </head> | |
| <body> | |
| <div class="main-content"> | |
| <!-- Settings Tab Content (Default) --> | |
| <div id="settings-tab" class="tab-content active"> | |
| <h2>Настройки</h2> | |
| <div class="form-group"> | |
| <label for="tags-input">Теги (разделяйте пробелом)</label> | |
| <textarea id="tags-input" class="tags-box" | |
| placeholder="#tag1 #tag2">#fblifestyle #kindnessmatters #kindness</textarea> | |
| </div> | |
| <div class="form-group"> | |
| <label for="creativity">Креативность (Температура)</label> | |
| <input type="range" id="creativity" min="0" max="1" step="0.1" value="0.7"> | |
| <div class="slider-value" id="creativity-val">0.7</div> | |
| </div> | |
| <div class="form-group"> | |
| <label for="preset-select">Пресет</label> | |
| <select id="preset-select"> | |
| <!-- Options populated by JS --> | |
| </select> | |
| </div> | |
| <div class="form-group"> | |
| <label for="preset-description">Описание пресета</label> | |
| <textarea id="preset-description" class="description-box" readonly></textarea> | |
| </div> | |
| </div> | |
| <!-- Storage Tab Content --> | |
| <div id="storage-tab" class="tab-content"> | |
| <h2>Хранилище</h2> | |
| <div class="form-group"> | |
| <p style="color: #888; text-align: center;">Здесь будут сохраненные материалы.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Bottom Navigation --> | |
| <nav class="bottom-nav"> | |
| <div class="nav-item active" data-tab="settings-tab"> | |
| <svg class="nav-icon" viewBox="0 0 24 24"> | |
| <path | |
| d="M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.85,9.49l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z" /> | |
| </svg> | |
| <span class="nav-label">Настройки</span> | |
| </div> | |
| <div class="nav-item" data-tab="storage-tab"> | |
| <svg class="nav-icon" viewBox="0 0 24 24"> | |
| <path | |
| d="M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z" /> | |
| </svg> | |
| <span class="nav-label">Хранилище</span> | |
| </div> | |
| </nav> | |
| <!-- Shared Data --> | |
| <script src="../../prompts/stylePresets.js"></script> | |
| <script src="settings.js"></script> | |
| <script src="storage.js"></script> | |
| <script src="app.js"></script> | |
| </body> | |
| </html> |