Revert to version 5448d80

This commit is contained in:
Flatlogic Bot 2026-02-06 18:54:31 +00:00
parent da6262f175
commit 907d0aa994
9 changed files with 701 additions and 657 deletions

View File

@ -57,69 +57,22 @@ if ($action === 'upload_bg_image') {
} else {
echo json_encode(['success' => false, 'error' => 'Invalid color format.']);
}
} elseif ($action === 'update_second_page_text_color') {
$color = $_POST['color'] ?? '';
if (preg_match('/^#[a-f0-9]{6}$/i', $color)) {
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'second_page_text_color'");
$stmt->execute([$color]);
} elseif ($action === 'update_setting') {
$key = $_POST['key'] ?? '';
$value = $_POST['value'] ?? '';
$allowedKeys = [
'p1_title_color', 'p1_title_size', 'p1_title_font', 'p1_title_text',
'p2_text_color', 'p2_text_size', 'p2_text_font', 'p2_line1_text', 'p2_line2_text',
'p2_hint_color', 'p2_hint_size', 'p2_hint_font', 'p2_hint_text',
'image_radius', 'yes_btn_color', 'no_btn_color'
];
if (in_array($key, $allowedKeys)) {
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = ?");
$stmt->execute([$value, $key]);
echo json_encode(['success' => true]);
} else {
echo json_encode(['success' => false, 'error' => 'Invalid color format.']);
echo json_encode(['success' => false, 'error' => 'Invalid setting key.']);
}
} elseif ($action === 'update_proposal_text_color') {
$color = $_POST['color'] ?? '';
if (preg_match('/^#[a-f0-9]{6}$/i', $color)) {
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'proposal_text_color'");
$stmt->execute([$color]);
echo json_encode(['success' => true]);
} else {
echo json_encode(['success' => false, 'error' => 'Invalid color format.']);
}
} elseif ($action === 'update_font_family') {
$font = $_POST['font'] ?? '';
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'font_family'");
$stmt->execute([$font]);
echo json_encode(['success' => true]);
} elseif ($action === 'update_second_page_box_pos_y') {
$pos = $_POST['pos'] ?? '0';
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'second_page_box_pos_y'");
$stmt->execute([$pos]);
echo json_encode(['success' => true]);
} elseif ($action === 'update_image_border_radius') {
$radius = $_POST['radius'] ?? '12';
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'image_border_radius'");
$stmt->execute([$radius]);
echo json_encode(['success' => true]);
} elseif ($action === 'update_proposal_text') {
$text = $_POST['text'] ?? '';
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'proposal_text'");
$stmt->execute([$text]);
echo json_encode(['success' => true]);
} elseif ($action === 'update_success_text_1') {
$text = $_POST['text'] ?? '';
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'success_text_1'");
$stmt->execute([$text]);
echo json_encode(['success' => true]);
} elseif ($action === 'update_success_text_2') {
$text = $_POST['text'] ?? '';
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'success_text_2'");
$stmt->execute([$text]);
echo json_encode(['success' => true]);
} elseif ($action === 'update_proposal_text_size') {
$size = $_POST['size'] ?? '2';
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'proposal_text_size'");
$stmt->execute([$size]);
echo json_encode(['success' => true]);
} elseif ($action === 'update_success_text_1_size') {
$size = $_POST['size'] ?? '1.5';
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'success_text_1_size'");
$stmt->execute([$size]);
echo json_encode(['success' => true]);
} elseif ($action === 'update_success_text_2_size') {
$size = $_POST['size'] ?? '0.9';
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = 'success_text_2_size'");
$stmt->execute([$size]);
echo json_encode(['success' => true]);
} elseif ($action === 'remove_bg_image') {
$stmt = db()->prepare("UPDATE settings SET setting_value = '' WHERE setting_key = 'bg_image'");
$stmt->execute();
@ -130,30 +83,8 @@ if ($action === 'upload_bg_image') {
$stmt->execute([$lockValue]);
echo json_encode(['success' => true, 'locked' => $lockValue === '1']);
} elseif ($action === 'reset') {
$defaults = [
'valentine_image' => 'assets/pasted-20260206-164030-456a591e.jpg',
'is_locked' => '0',
'bg_color' => '#ffe4e6',
'bg_image' => '',
'popup_color' => '#ffccd5',
'font_family' => "'Inter', sans-serif",
'second_page_text_color' => '#e63946',
'second_page_box_pos_y' => '0',
'image_border_radius' => '12',
'proposal_text' => 'Gvantsa, would you be my valentine?',
'success_text_1' => "Congratulations, you are now Sam's Valentine! ❤️",
'success_text_2' => 'He is so incredibly lucky to have someone in his life who would click yes.',
'proposal_text_color' => '#e63946',
'proposal_text_size' => '2',
'success_text_1_size' => '1.5',
'success_text_2_size' => '0.9'
];
foreach ($defaults as $key => $value) {
$stmt = db()->prepare("UPDATE settings SET setting_value = ? WHERE setting_key = ?");
$stmt->execute([$value, $key]);
}
// Reset button positions and sizes is handled by reloading the page in the frontend.
// We no longer reset colors or text content here.
echo json_encode(['success' => true]);
} else {
echo json_encode(['success' => false, 'error' => 'Invalid action.']);

View File

@ -1,254 +1,294 @@
:root {
--bg-color: #ffe4e6;
--popup-bg: #ffccd5;
--primary-color: #e63946;
--bg-color: #ffe4e6; /* Default Light Pink */
--popup-bg: #ffccd5; /* Default Light Red */
--bg-image: none;
--font-family: 'Inter', sans-serif;
--second-page-text-color: #e63946;
--second-page-box-pos-y: 0px;
--image-border-radius: 12px;
--text-color: #2d3436;
--secondary-text: #636e72;
--border-color: rgba(0,0,0,0.05);
--font-family: 'Inter', system-ui, -apple-system, sans-serif;
--proposal-text-color: #e63946;
--proposal-text-size: 2rem;
--success-text-1-size: 1.5rem;
--success-text-2-size: 0.9rem;
--p1-title-color: #e63946;
--p1-title-size: 1.75rem;
--p1-title-font: 'Inter';
--p2-text-color: #e63946;
--p2-text-size: 1.25rem;
--p2-text-font: 'Inter';
--p2-hint-color: #636e72;
--p2-hint-size: 0.85rem;
--p2-hint-font: 'Inter';
--image-radius: 12px;
--yes-btn-color: #e63946;
--no-btn-color: #ffffff;
}
body {
margin: 0;
padding: 0;
font-family: var(--font-family);
background-color: var(--bg-color);
background-image: var(--bg-image);
background-size: cover;
background-position: center;
background-attachment: fixed;
min-height: 100vh;
color: var(--text-color);
font-family: var(--font-family);
margin: 0;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 0.3s ease;
min-height: 100vh;
overflow-x: hidden;
}
.admin-controls {
position: fixed;
top: 1rem;
right: 1rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
z-index: 100;
align-items: flex-end;
}
.control-buttons {
display: flex;
gap: 0.5rem;
}
.admin-controls button {
background: rgba(255, 255, 255, 0.8);
border: none;
border-radius: 50%;
width: 36px;
height: 36px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: all 0.2s ease;
color: var(--secondary-text);
}
.admin-controls button:hover {
background: #fff;
color: var(--primary-color);
transform: scale(1.1);
}
.settings-panel {
background: white;
padding: 1rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
margin-top: 0.5rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
width: 250px;
max-height: 80vh;
overflow-y: auto;
animation: slideDown 0.3s ease;
}
.settings-tabs {
display: flex;
border-bottom: 1px solid #eee;
margin-bottom: 0.5rem;
}
.tab-btn {
background: none !important;
border: none !important;
border-bottom: 2px solid transparent !important;
border-radius: 0 !important;
padding: 0.5rem !important;
width: auto !important;
height: auto !important;
font-size: 0.8rem !important;
font-weight: 600;
cursor: pointer;
color: var(--secondary-text) !important;
box-shadow: none !important;
}
.tab-btn.active {
border-bottom-color: var(--primary-color) !important;
color: var(--primary-color) !important;
}
.tab-content {
display: none;
flex-direction: column;
gap: 0.75rem;
}
.tab-content.active {
display: flex;
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.settings-group {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.settings-group label {
font-size: 0.75rem;
font-weight: 600;
color: var(--secondary-text);
}
.settings-group input[type="color"],
.settings-group select {
width: 100%;
height: 30px;
border: 1px solid var(--border-color);
border-radius: 4px;
cursor: pointer;
}
.settings-group input[type="range"] {
width: 100%;
}
.settings-group .btn-small {
padding: 4px 8px;
font-size: 0.7rem;
background: #f1f2f6;
border: 1px solid #dfe4ea;
border-radius: 4px;
cursor: pointer;
}
.container {
width: 90%;
max-width: 500px;
width: 90%;
text-align: center;
z-index: 1;
}
#proposal-box, #success-message {
background-color: var(--popup-bg);
padding: 2.5rem;
padding: 2.5rem 2rem;
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
backdrop-filter: blur(5px);
background: var(--popup-bg);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
position: relative;
}
#success-message {
display: none;
animation: fadeInScale 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
transform: translateY(var(--second-page-box-pos-y));
}
#success-message.preview-mode {
animation: none; /* No animation for preview to make it snappier */
}
#success-message.preview-mode .redirect-hint {
display: none;
}
@keyframes fadeInScale {
from { opacity: 0; transform: translateY(calc(var(--second-page-box-pos-y) + 20px)) scale(0.9); }
to { opacity: 1; transform: translateY(var(--second-page-box-pos-y)) scale(1); }
}
h1 {
color: var(--proposal-text-color);
font-size: var(--proposal-text-size);
margin-bottom: 2rem;
h1.p1-title {
font-size: var(--p1-title-size);
font-family: var(--p1-title-font), var(--font-family);
color: var(--p1-title-color);
font-weight: 700;
margin-bottom: 1.5rem;
letter-spacing: -0.5px;
}
.image-preview-container {
width: 100%;
height: 250px;
background: #f1f5f9;
border-radius: var(--image-border-radius);
margin-bottom: 2rem;
height: auto; min-height: 200px; max-height: 400px;
background-color: rgba(255, 255, 255, 0.5);
border: 2px solid rgba(0,0,0,0.05);
border-radius: var(--image-radius);
margin-bottom: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
align-items: center;
overflow: hidden;
position: relative;
border: 2px dashed #cbd5e1;
}
.image-preview-container.has-image {
border: none;
}
.image-preview-container img {
width: 100%;
height: 100%;
object-fit: cover;
object-fit: contain; max-height: 400px;
}
.button-group {
display: flex;
gap: 1.5rem;
justify-content: center;
display: grid;
grid-template-columns: 1fr 1fr;
justify-items: center;
align-items: center;
min-height: 60px;
margin-top: 2rem;
position: relative;
min-height: 80px;
}
.btn {
padding: 0.8rem 2rem;
padding: 1.125rem 2.625rem;
font-size: 1.5rem;
font-weight: 600;
border-radius: 12px;
border: none;
border-radius: 50px;
font-weight: 700;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
font-family: inherit;
transition: transform 0.1s ease, font-size 0.2s ease, background-color 0.2s ease;
white-space: nowrap;
}
.btn:active {
transform: scale(0.95);
transform: scale(0.9) !important;
}
.btn-yes {
background-color: #e63946;
background-color: var(--yes-btn-color);
color: white;
font-size: 1.1rem;
box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
z-index: 10;
box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}
.btn-yes:hover {
filter: brightness(0.9);
}
.btn-no {
background-color: #f8fafc;
color: #64748b;
border: 1px solid #e2e8f0;
background-color: var(--no-btn-color);
color: var(--text-color);
position: relative;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.btn-no:hover {
filter: brightness(0.95);
}
#success-message {
display: none;
animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.success-text {
font-size: var(--success-text-1-size);
color: var(--second-page-text-color);
font-size: var(--p2-text-size);
font-family: var(--p2-text-font), var(--font-family);
color: var(--p2-text-color);
line-height: 1.6;
font-weight: 700;
margin-bottom: 1.5rem;
}
.success-text-small {
font-size: var(--success-text-2-size);
margin-bottom: 0.5rem;
}
.redirect-hint {
font-size: 0.9rem;
color: #64748b;
margin-top: 2rem;
font-size: var(--p2-hint-size);
font-family: var(--p2-hint-font), var(--font-family);
color: var(--p2-hint-color);
font-style: italic;
}
/* Admin Controls */
.admin-controls {
position: fixed;
top: 20px;
right: 20px;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 10px;
z-index: 1000;
}
.control-buttons {
display: flex;
gap: 10px;
}
.admin-controls button {
background: white;
border: 1px solid #e2e8f0;
padding: 8px;
border-radius: 8px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: #64748b;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
transition: all 0.2s;
}
.admin-controls button:hover {
background: #f8fafc;
color: #e63946;
}
.settings-panel {
background: white;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 15px;
width: 280px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
display: flex;
flex-direction: column;
gap: 12px;
}
.settings-scroll-area {
max-height: 400px;
overflow-y: auto;
padding-right: 5px;
}
.settings-scroll-area::-webkit-scrollbar {
width: 6px;
}
.settings-scroll-area::-webkit-scrollbar-thumb {
background: #e2e8f0;
border-radius: 10px;
}
.settings-group {
margin-bottom: 15px;
}
.settings-group:last-child {
margin-bottom: 0;
}
.settings-group label {
display: block;
font-size: 0.8rem;
color: #64748b;
margin-bottom: 5px;
font-weight: 600;
}
.settings-group input[type="color"],
.settings-group input[type="number"],
.settings-group select {
width: 100%;
padding: 6px;
border: 1px solid #e2e8f0;
border-radius: 6px;
outline: none;
}
.btn-small {
padding: 4px 10px !important;
font-size: 0.75rem !important;
}
#bg-image-input {
#image-input, #bg-image-input {
display: none;
}
/* State management */
.state-locked .admin-controls #lock-btn {
opacity: 0.3;
}
.state-locked .admin-controls #lock-btn:hover {
opacity: 1;
hr {
border: none;
border-top: 1px solid #eee;
margin: 0.5rem 0;
}

View File

@ -1,79 +1,304 @@
document.addEventListener('DOMContentLoaded', () => {
const yesBtn = document.getElementById('yes-btn');
const noBtn = document.getElementById('no-btn');
const yesBtn = document.getElementById('yes-btn');
const proposalBox = document.getElementById('proposal-box');
const successMessage = document.getElementById('success-message');
const resetBtn = document.getElementById('reset-btn');
const successBox = document.getElementById('success-message');
const lockBtn = document.getElementById('lock-btn');
const resetBtn = document.getElementById('reset-btn');
const settingsToggle = document.getElementById('settings-toggle');
const settingsPanel = document.getElementById('settings-panel');
const previewImg = document.getElementById('preview-img');
const previewSuccessToggle = document.getElementById('preview-success-toggle');
// Setting inputs
const bgColorPicker = document.getElementById('bg-color-picker');
const popupColorPicker = document.getElementById('popup-color-picker');
const bgImageInput = document.getElementById('bg-image-input');
const removeBgBtn = document.getElementById('remove-bg-btn');
const fontFamilySelect = document.getElementById('font-family-select');
const secondPageTextColorPicker = document.getElementById('second-page-text-color-picker');
const secondPageBoxPosYInput = document.getElementById('second-page-box-pos-y-input');
const imageBorderRadiusInput = document.getElementById('image-border-radius-input');
const imageRadiusPicker = document.getElementById('image-radius-picker');
const previewPage2Toggle = document.getElementById('preview-page2-toggle');
// New setting inputs
const proposalTextColorPicker = document.getElementById('proposal-text-color-picker');
const proposalTextSizeInput = document.getElementById('proposal-text-size-input');
const successText1SizeInput = document.getElementById('success-text-1-size-input');
const successText2SizeInput = document.getElementById('success-text-2-size-input');
const proposalTextInput = document.getElementById('proposal-text-input');
const successText1Input = document.getElementById('success-text-1-input');
const successText2Input = document.getElementById('success-text-2-input');
let yesScale = 1;
let isLocked = typeof IS_LOCKED !== 'undefined' ? IS_LOCKED : false;
// Display elements
const proposalTextDisplay = document.getElementById('proposal-text-display');
const successText1Display = document.getElementById('success-text-1-display');
const successText2Display = document.getElementById('success-text-2-display');
// Audio Context for sounds
const AudioCtx = window.AudioContext || window.webkitAudioContext;
let audioCtx = null;
let noCount = 0;
const phrases = [
"No", "Are you sure?", "Really sure?", "Think again!", "Last chance!",
"Surely not?", "You might regret this!", "Give it another thought!",
"Are you absolutely sure?", "This could be a mistake!", "Have a heart!",
"Don't be so cold!", "Change of heart?", "Wouldn't you reconsider?",
"Is that your final answer?", "You're breaking my heart ;("
];
function playSound(type) {
if (!audioCtx) audioCtx = new AudioCtx();
const osc = audioCtx.createOscillator();
const gain = audioCtx.createGain();
// No button movement and text change
noBtn.addEventListener('click', () => {
noCount++;
noBtn.innerText = phrases[Math.min(noCount, phrases.length - 1)];
osc.connect(gain);
gain.connect(audioCtx.destination);
const currentSize = parseFloat(window.getComputedStyle(yesBtn).fontSize);
yesBtn.style.fontSize = `${currentSize * 1.2}px`;
yesBtn.style.padding = `${parseFloat(window.getComputedStyle(yesBtn).paddingTop) * 1.2}px ${parseFloat(window.getComputedStyle(yesBtn).paddingLeft) * 1.2}px`;
const now = audioCtx.currentTime;
// Randomly move No button
const container = document.getElementById('main-container');
const containerRect = container.getBoundingClientRect();
const btnRect = noBtn.getBoundingClientRect();
if (type === 'happy') {
// Happy sound: Arpeggio
osc.type = 'sine';
osc.frequency.setValueAtTime(523.25, now); // C5
osc.frequency.exponentialRampToValueAtTime(880, now + 0.1); // A5
gain.gain.setValueAtTime(0.3, now);
gain.gain.exponentialRampToValueAtTime(0.01, now + 0.3);
osc.start(now);
osc.stop(now + 0.3);
} else {
// Less happy sound: Low thud
osc.type = 'triangle';
osc.frequency.setValueAtTime(150, now);
osc.frequency.exponentialRampToValueAtTime(40, now + 0.2);
gain.gain.setValueAtTime(0.3, now);
gain.gain.exponentialRampToValueAtTime(0.01, now + 0.2);
osc.start(now);
osc.stop(now + 0.2);
}
}
const maxX = containerRect.width - btnRect.width;
const maxY = containerRect.height - btnRect.height;
// Settings Toggle
if (settingsToggle) {
settingsToggle.addEventListener('click', () => {
settingsPanel.style.display = settingsPanel.style.display === 'none' ? 'flex' : 'none';
});
}
const randomX = Math.floor(Math.random() * maxX);
const randomY = Math.floor(Math.random() * maxY);
noBtn.style.position = 'absolute';
noBtn.style.left = `${randomX}px`;
noBtn.style.top = `${randomY}px`;
// Tabs logic
const tabBtns = document.querySelectorAll('.tab-btn');
const tabContents = document.querySelectorAll('.tab-content');
tabBtns.forEach(btn => {
btn.addEventListener('click', () => {
const tab = btn.dataset.tab;
tabBtns.forEach(b => b.classList.remove('active'));
tabContents.forEach(c => c.classList.remove('active'));
btn.classList.add('active');
document.getElementById(`tab-${tab}`).classList.add('active');
});
});
// Yes button action
yesBtn.addEventListener('click', () => {
if (previewSuccessToggle.checked) return; // Ignore if in preview mode
// Preview Page 2 Toggle
if (previewPage2Toggle) {
previewPage2Toggle.addEventListener('change', (e) => {
if (e.target.checked) {
proposalBox.style.display = 'none';
successMessage.style.display = 'block';
successBox.style.display = 'block';
} else {
proposalBox.style.display = 'block';
successBox.style.display = 'none';
}
});
}
// Image Radius
if (imageRadiusPicker) {
imageRadiusPicker.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--image-radius', `${e.target.value}px`);
});
imageRadiusPicker.addEventListener('change', (e) => {
saveSetting('image_radius', `${e.target.value}px`);
});
}
// Generic Setting Inputs
const settingInputs = document.querySelectorAll('.setting-input');
settingInputs.forEach(input => {
const key = input.dataset.key;
input.addEventListener('input', (e) => {
let value = e.target.value;
// Handle Text Updates
if (key === 'p1_title_text') {
document.querySelector('.p1-title').textContent = value;
} else if (key === 'p2_line1_text') {
document.querySelector('.p2-line1').textContent = value;
} else if (key === 'p2_line2_text') {
document.querySelector('.p2-line2').textContent = value;
} else if (key === 'p2_hint_text') {
document.querySelector('.redirect-hint').textContent = value;
}
// Handle CSS Variable Updates
let cssKey = key.replace(/_/g, '-');
if (input.type === 'range') {
if (key.includes('size')) value += 'rem';
else if (key.includes('radius')) value += 'px';
}
document.documentElement.style.setProperty(`--${cssKey}`, value);
});
input.addEventListener('change', (e) => {
let value = e.target.value;
if (input.type === 'range') {
if (key.includes('size')) value += 'rem';
else if (key.includes('radius')) value += 'px';
}
saveSetting(key, value);
});
});
function saveSetting(key, value) {
const formData = new FormData();
formData.append('action', 'update_setting');
formData.append('key', key);
formData.append('value', value);
return fetch('api/save_settings.php', { method: 'POST', body: formData });
}
// Color Pickers
if (bgColorPicker) {
bgColorPicker.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--bg-color', e.target.value);
});
bgColorPicker.addEventListener('change', (e) => {
const formData = new FormData();
formData.append('action', 'update_bg_color');
formData.append('color', e.target.value);
fetch('api/save_settings.php', { method: 'POST', body: formData });
});
}
if (popupColorPicker) {
popupColorPicker.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--popup-bg', e.target.value);
});
popupColorPicker.addEventListener('change', (e) => {
const formData = new FormData();
formData.append('action', 'update_popup_color');
formData.append('color', e.target.value);
fetch('api/save_settings.php', { method: 'POST', body: formData });
});
}
// Background Image Upload
if (bgImageInput) {
bgImageInput.addEventListener('change', function() {
const file = this.files[0];
if (file) {
const formData = new FormData();
formData.append('action', 'upload_bg_image');
formData.append('image', file);
fetch('api/save_settings.php', {
method: 'POST',
body: formData
})
.then(response => response.json())
.then(data => {
if (data.success) {
document.documentElement.style.setProperty('--bg-image', `url('${data.path}?t=${new Date().getTime()}')`);
location.reload(); // Reload to update the "Remove" button visibility
} else {
alert(data.error || 'Failed to upload background image');
}
})
.catch(error => {
console.error('Error:', error);
alert('An error occurred during upload.');
});
}
});
}
if (removeBgBtn) {
removeBgBtn.addEventListener('click', () => {
const formData = new FormData();
formData.append('action', 'remove_bg_image');
fetch('api/save_settings.php', { method: 'POST', body: formData })
.then(response => response.json())
.then(data => {
if (data.success) {
document.documentElement.style.setProperty('--bg-image', 'none');
location.reload();
}
});
});
}
// Lock/Unlock Toggle
lockBtn.addEventListener('click', () => {
const newLockedState = !isLocked;
const formData = new FormData();
formData.append('action', 'toggle_lock');
formData.append('lock', newLockedState);
fetch('api/save_settings.php', {
method: 'POST',
body: formData
})
.then(response => response.json())
.then(data => {
if (data.success) {
location.reload();
}
});
});
// Reset Experience
resetBtn.addEventListener('click', () => {
if (confirm('Reset experience to page 1? (Positions and sizes will be reset)')) {
const formData = new FormData();
formData.append('action', 'reset');
fetch('api/save_settings.php', {
method: 'POST',
body: formData
})
.then(response => response.json())
.then(data => {
if (data.success) {
location.reload();
}
});
}
});
// "No" Button Dodging Logic
const dodgeThreshold = 100; // pixels
document.addEventListener('mousemove', (e) => {
if (!noBtn || (successBox && successBox.style.display === 'block') || (previewPage2Toggle && previewPage2Toggle.checked)) return;
const rect = noBtn.getBoundingClientRect();
const btnCenterX = rect.left + rect.width / 2;
const btnCenterY = rect.top + rect.height / 2;
const distance = Math.hypot(e.clientX - btnCenterX, e.clientY - btnCenterY);
if (distance < dodgeThreshold) {
const angle = Math.atan2(e.clientY - btnCenterY, e.clientX - btnCenterX);
const moveDist = dodgeThreshold - distance + 20;
let newX = rect.left - Math.cos(angle) * moveDist;
let newY = rect.top - Math.sin(angle) * moveDist;
// Keep within viewport bounds
const padding = 20;
newX = Math.max(padding, Math.min(window.innerWidth - rect.width - padding, newX));
newY = Math.max(padding, Math.min(window.innerHeight - rect.height - padding, newY));
noBtn.style.position = 'fixed';
noBtn.style.left = `${newX}px`;
noBtn.style.top = `${newY}px`;
noBtn.style.margin = '0';
}
});
// "No" Click Logic
if (noBtn) {
noBtn.addEventListener('click', (e) => {
e.preventDefault();
playSound('sad');
yesScale += 0.15;
yesBtn.style.transform = `scale(${yesScale})`;
});
}
// "Yes" Click Logic
if (yesBtn) {
yesBtn.addEventListener('click', () => {
playSound('happy');
proposalBox.style.display = 'none';
successBox.style.display = 'block';
// Hide controls during celebration
document.querySelector('.admin-controls').style.display = 'none';
// Confetti effect
const duration = 15 * 1000;
@ -92,222 +317,14 @@ document.addEventListener('DOMContentLoaded', () => {
}
const particleCount = 50 * (timeLeft / duration);
confetti({ ...defaults, particleCount, origin: { x: randomInRange(0.1, 0.3), y: Math.random() - 0.2 } });
confetti({ ...defaults, particleCount, origin: { x: randomInRange(0.7, 0.9), y: Math.random() - 0.2 } });
confetti(Object.assign({}, defaults, { particleCount, origin: { x: randomInRange(0.1, 0.3), y: Math.random() - 0.2 } }));
confetti(Object.assign({}, defaults, { particleCount, origin: { x: randomInRange(0.7, 0.9), y: Math.random() - 0.2 } }));
}, 250);
// Redirect after 15 seconds
// Redirect after 15s
setTimeout(() => {
window.location.href = "https://www.youtube.com/watch?v=dQw4w9WgXcQ";
}, 15000);
});
// Preview Success Page logic
previewSuccessToggle.addEventListener('change', (e) => {
if (e.target.checked) {
proposalBox.style.display = 'none';
successMessage.style.display = 'block';
successMessage.classList.add('preview-mode');
} else {
proposalBox.style.display = 'block';
successMessage.style.display = 'none';
successMessage.classList.remove('preview-mode');
}
});
// Toggle settings panel
settingsToggle.addEventListener('click', () => {
settingsPanel.style.display = settingsPanel.style.display === 'none' ? 'flex' : 'none';
});
// Update background color
bgColorPicker.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--bg-color', e.target.value);
});
bgColorPicker.addEventListener('change', (e) => {
saveSetting('update_bg_color', { color: e.target.value });
});
// Update popup color
popupColorPicker.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--popup-bg', e.target.value);
});
popupColorPicker.addEventListener('change', (e) => {
saveSetting('update_popup_color', { color: e.target.value });
});
// Update second page text color
secondPageTextColorPicker.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--second-page-text-color', e.target.value);
});
secondPageTextColorPicker.addEventListener('change', (e) => {
saveSetting('update_second_page_text_color', { color: e.target.value });
});
// Update proposal text color
proposalTextColorPicker.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--proposal-text-color', e.target.value);
});
proposalTextColorPicker.addEventListener('change', (e) => {
saveSetting('update_proposal_text_color', { color: e.target.value });
});
// Update font family
fontFamilySelect.addEventListener('change', (e) => {
document.documentElement.style.setProperty('--font-family', e.target.value);
saveSetting('update_font_family', { font: e.target.value });
});
// Update success box Y position
secondPageBoxPosYInput.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--second-page-box-pos-y', `${e.target.value}px`);
});
secondPageBoxPosYInput.addEventListener('change', (e) => {
saveSetting('update_second_page_box_pos_y', { pos: e.target.value });
});
// Update image border radius
imageBorderRadiusInput.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--image-border-radius', `${e.target.value}px`);
});
imageBorderRadiusInput.addEventListener('change', (e) => {
saveSetting('update_image_border_radius', { radius: e.target.value });
});
// Update proposal text size
proposalTextSizeInput.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--proposal-text-size', `${e.target.value}rem`);
});
proposalTextSizeInput.addEventListener('change', (e) => {
saveSetting('update_proposal_text_size', { size: e.target.value });
});
// Update success text 1 size
successText1SizeInput.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--success-text-1-size', `${e.target.value}rem`);
});
successText1SizeInput.addEventListener('change', (e) => {
saveSetting('update_success_text_1_size', { size: e.target.value });
});
// Update success text 2 size
successText2SizeInput.addEventListener('input', (e) => {
document.documentElement.style.setProperty('--success-text-2-size', `${e.target.value}rem`);
});
successText2SizeInput.addEventListener('change', (e) => {
saveSetting('update_success_text_2_size', { size: e.target.value });
});
// Update proposal text content
proposalTextInput.addEventListener('input', (e) => {
proposalTextDisplay.innerText = e.target.value;
});
proposalTextInput.addEventListener('change', (e) => {
saveSetting('update_proposal_text', { text: e.target.value });
});
// Update success text 1 content
successText1Input.addEventListener('input', (e) => {
successText1Display.innerText = e.target.value;
});
successText1Input.addEventListener('change', (e) => {
saveSetting('update_success_text_1', { text: e.target.value });
});
// Update success text 2 content
successText2Input.addEventListener('input', (e) => {
successText2Display.innerText = e.target.value;
});
successText2Input.addEventListener('change', (e) => {
saveSetting('update_success_text_2', { text: e.target.value });
});
// Upload background image
bgImageInput.addEventListener('change', (e) => {
const file = e.target.files[0];
if (!file) return;
const formData = new FormData();
formData.append('action', 'upload_bg_image');
formData.append('image', file);
fetch('api/save_settings.php', {
method: 'POST',
body: formData
})
.then(res => res.json())
.then(data => {
if (data.success) {
document.documentElement.style.setProperty('--bg-image', `url('${data.path}?v=${Date.now()}')`);
location.reload(); // Reload to show remove button and update PHP state
}
});
});
// Remove background image
if (removeBgBtn) {
removeBgBtn.addEventListener('click', () => {
saveSetting('remove_bg_image', {}).then(() => {
location.reload();
});
});
}
// Toggle Lock
lockBtn.addEventListener('click', () => {
const newLockState = !IS_LOCKED;
const formData = new FormData();
formData.append('action', 'toggle_lock');
formData.append('lock', newLockState);
fetch('api/save_settings.php', {
method: 'POST',
body: formData
})
.then(res => res.json())
.then(data => {
if (data.success) {
location.reload();
}
});
});
// Reset settings
resetBtn.addEventListener('click', () => {
if (confirm('Are you sure you want to reset all settings to defaults?')) {
saveSetting('reset', {}).then(() => {
location.reload();
});
}
});
async function saveSetting(action, data) {
const formData = new FormData();
formData.append('action', action);
for (const key in data) {
formData.append(key, data[key]);
}
try {
const res = await fetch('api/save_settings.php', {
method: 'POST',
body: formData
});
return await res.json();
} catch (err) {
console.error('Failed to save setting:', err);
}
}
});

View File

@ -1,5 +0,0 @@
INSERT IGNORE INTO settings (setting_key, setting_value) VALUES
('font_family', "'Inter', sans-serif"),
('second_page_text_color', '#e63946'),
('second_page_box_pos_y', '0'),
('image_border_radius', '12');

View File

@ -0,0 +1,12 @@
INSERT INTO settings (setting_key, setting_value) VALUES
('p1_title_color', '#e63946'),
('p1_title_size', '1.75rem'),
('p1_title_font', 'Inter'),
('p2_text_color', '#e63946'),
('p2_text_size', '1.25rem'),
('p2_text_font', 'Inter'),
('p2_hint_color', '#636e72'),
('p2_hint_size', '0.85rem'),
('p2_hint_font', 'Inter'),
('image_radius', '12px')
ON DUPLICATE KEY UPDATE setting_value = VALUES(setting_value);

View File

@ -1,9 +0,0 @@
INSERT IGNORE INTO settings (setting_key, setting_value) VALUES
('proposal_text', 'Gvantsa, would you be my valentine?'),
('success_text_1', 'Congratulations, you are now Sam\'s Valentine! '),
('success_text_2', 'He is so incredibly lucky to have someone in his life who would click yes.'),
('proposal_text_color', '#e63946'),
('proposal_text_size', '2'),
('success_text_1_size', '1.5'),
('success_text_2_size', '0.9');

View File

@ -0,0 +1,6 @@
-- Add text content settings
INSERT IGNORE INTO settings (setting_key, setting_value) VALUES
('p1_title_text', 'Gvantsa, would you be my valentine?'),
('p2_line1_text', 'Congratulations, you are now Sam\'s Valentine! '),
('p2_line2_text', 'He is so incredibly lucky to have someone in his life who would click yes.'),
('p2_hint_text', 'Redirecting you to a special surprise in 15 seconds...');

View File

@ -0,0 +1,2 @@
INSERT INTO settings (setting_key, setting_value) VALUES ('yes_btn_color', '#e63946') ON DUPLICATE KEY UPDATE setting_value = VALUES(setting_value);
INSERT INTO settings (setting_key, setting_value) VALUES ('no_btn_color', '#ffffff') ON DUPLICATE KEY UPDATE setting_value = VALUES(setting_value);

222
index.php
View File

@ -12,27 +12,36 @@ $isLocked = ($settings['is_locked'] ?? '0') === '1';
$bgColor = $settings['bg_color'] ?? '#ffe4e6';
$bgImage = $settings['bg_image'] ?? '';
$popupColor = $settings['popup_color'] ?? '#ffccd5';
$fontFamily = $settings['font_family'] ?? "'Inter', sans-serif";
$secondPageTextColor = $settings['second_page_text_color'] ?? '#e63946';
$secondPageBoxPosY = $settings['second_page_box_pos_y'] ?? '0';
$imageBorderRadius = $settings['image_border_radius'] ?? '12';
// New settings
$proposalText = $settings['proposal_text'] ?? 'Gvantsa, would you be my valentine?';
$successText1 = $settings['success_text_1'] ?? "Congratulations, you are now Sam's Valentine! ❤️";
$successText2 = $settings['success_text_2'] ?? "He is so incredibly lucky to have someone in his life who would click yes.";
$proposalTextColor = $settings['proposal_text_color'] ?? '#e63946';
$proposalTextSize = $settings['proposal_text_size'] ?? '2';
$successText1Size = $settings['success_text_1_size'] ?? '1.5';
$successText2Size = $settings['success_text_2_size'] ?? '0.9';
$p1TitleColor = $settings['p1_title_color'] ?? '#e63946';
$p1TitleSize = $settings['p1_title_size'] ?? '1.75rem';
$p1TitleFont = $settings['p1_title_font'] ?? 'Inter';
$p1TitleText = $settings['p1_title_text'] ?? 'Gvantsa, would you be my valentine?';
$p2TextColor = $settings['p2_text_color'] ?? '#e63946';
$p2TextSize = $settings['p2_text_size'] ?? '1.25rem';
$p2TextFont = $settings['p2_text_font'] ?? 'Inter';
$p2Line1Text = $settings['p2_line1_text'] ?? "Congratulations, you are now Sam's Valentine! ❤️";
$p2Line2Text = $settings['p2_line2_text'] ?? 'He is so incredibly lucky to have someone in his life who would click yes.';
$p2HintColor = $settings['p2_hint_color'] ?? '#636e72';
$p2HintSize = $settings['p2_hint_size'] ?? '0.85rem';
$p2HintFont = $settings['p2_hint_font'] ?? 'Inter';
$p2HintText = $settings['p2_hint_text'] ?? 'Redirecting you to a special surprise in 15 seconds...';
$imageRadius = $settings['image_radius'] ?? '12px';
$yesBtnColor = $settings['yes_btn_color'] ?? '#e63946';
$noBtnColor = $settings['no_btn_color'] ?? '#ffffff';
$fonts = ['Inter', 'Arial', 'Verdana', 'Times New Roman', 'Georgia', 'Courier New', 'Brush Script MT', 'Comic Sans MS'];
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title><?= htmlspecialchars($proposalText) ?></title>
<title><?= htmlspecialchars($p1TitleText) ?></title>
<?php
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'A special valentine proposal.';
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? ($valentineImage ?: '');
@ -47,22 +56,29 @@ $successText2Size = $settings['success_text_2_size'] ?? '0.9';
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Dancing+Script:wght@400;700&family=Pacifico&family=Quicksand:wght@400;700&family=Caveat:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
<style>
:root {
--bg-color: <?= htmlspecialchars($bgColor) ?>;
--popup-bg: <?= htmlspecialchars($popupColor) ?>;
--bg-image: <?= $bgImage ? "url('" . htmlspecialchars($bgImage) . "')" : 'none' ?>;
--font-family: <?= $fontFamily ?>;
--second-page-text-color: <?= htmlspecialchars($secondPageTextColor) ?>;
--second-page-box-pos-y: <?= htmlspecialchars($secondPageBoxPosY) ?>px;
--image-border-radius: <?= htmlspecialchars($imageBorderRadius) ?>px;
--proposal-text-color: <?= htmlspecialchars($proposalTextColor) ?>;
--proposal-text-size: <?= htmlspecialchars($proposalTextSize) ?>rem;
--success-text-1-size: <?= htmlspecialchars($successText1Size) ?>rem;
--success-text-2-size: <?= htmlspecialchars($successText2Size) ?>rem;
--p1-title-color: <?= htmlspecialchars($p1TitleColor) ?>;
--p1-title-size: <?= htmlspecialchars($p1TitleSize) ?>;
--p1-title-font: <?= htmlspecialchars($p1TitleFont) ?>;
--p2-text-color: <?= htmlspecialchars($p2TextColor) ?>;
--p2-text-size: <?= htmlspecialchars($p2TextSize) ?>;
--p2-text-font: <?= htmlspecialchars($p2TextFont) ?>;
--p2-hint-color: <?= htmlspecialchars($p2HintColor) ?>;
--p2-hint-size: <?= htmlspecialchars($p2HintSize) ?>;
--p2-hint-font: <?= htmlspecialchars($p2HintFont) ?>;
--image-radius: <?= htmlspecialchars($imageRadius) ?>;
--yes-btn-color: <?= htmlspecialchars($yesBtnColor) ?>;
--no-btn-color: <?= htmlspecialchars($noBtnColor) ?>;
}
</style>
</head>
@ -86,59 +102,13 @@ $successText2Size = $settings['success_text_2_size'] ?? '0.9';
</div>
<div id="settings-panel" class="settings-panel" style="display: none;">
<div class="settings-scroll-area">
<div class="settings-group">
<label style="display: flex; align-items: center; cursor: pointer; color: #e63946; font-weight: bold;">
<input type="checkbox" id="preview-success-toggle" style="margin-right: 8px; width: auto;">
Preview Success Page
</label>
</div>
<div class="settings-group">
<label>Proposal Text</label>
<textarea id="proposal-text-input" rows="2" style="width:100%; padding:6px; border:1px solid #e2e8f0; border-radius:6px;"><?= htmlspecialchars($proposalText) ?></textarea>
</div>
<div class="settings-group">
<label>Success Text Line 1</label>
<textarea id="success-text-1-input" rows="2" style="width:100%; padding:6px; border:1px solid #e2e8f0; border-radius:6px;"><?= htmlspecialchars($successText1) ?></textarea>
</div>
<div class="settings-group">
<label>Success Text Line 2</label>
<textarea id="success-text-2-input" rows="2" style="width:100%; padding:6px; border:1px solid #e2e8f0; border-radius:6px;"><?= htmlspecialchars($successText2) ?></textarea>
</div>
<div class="settings-group">
<label>Font Family</label>
<select id="font-family-select">
<option value="'Inter', sans-serif" <?= $fontFamily === "'Inter', sans-serif" ? 'selected' : '' ?>>Inter</option>
<option value="'Dancing Script', cursive" <?= $fontFamily === "'Dancing Script', cursive" ? 'selected' : '' ?>>Dancing Script</option>
<option value="'Pacifico', cursive" <?= $fontFamily === "'Pacifico', cursive" ? 'selected' : '' ?>>Pacifico</option>
<option value="'Quicksand', sans-serif" <?= $fontFamily === "'Quicksand', sans-serif" ? 'selected' : '' ?>>Quicksand</option>
<option value="'Caveat', cursive" <?= $fontFamily === "'Caveat', cursive" ? 'selected' : '' ?>>Caveat</option>
</select>
</div>
<div class="settings-group">
<label>Proposal Text Color</label>
<input type="color" id="proposal-text-color-picker" value="<?= htmlspecialchars($proposalTextColor) ?>">
</div>
<div class="settings-group">
<label>Success Page Text Color</label>
<input type="color" id="second-page-text-color-picker" value="<?= htmlspecialchars($secondPageTextColor) ?>">
</div>
<div class="settings-group">
<label>Proposal Text Size (rem)</label>
<input type="number" id="proposal-text-size-input" step="0.1" value="<?= htmlspecialchars($proposalTextSize) ?>">
</div>
<div class="settings-group">
<label>Success Text 1 Size (rem)</label>
<input type="number" id="success-text-1-size-input" step="0.1" value="<?= htmlspecialchars($successText1Size) ?>">
</div>
<div class="settings-group">
<label>Success Text 2 Size (rem)</label>
<input type="number" id="success-text-2-size-input" step="0.1" value="<?= htmlspecialchars($successText2Size) ?>">
<div class="settings-tabs">
<button class="tab-btn active" data-tab="general">General</button>
<button class="tab-btn" data-tab="page1">Page 1</button>
<button class="tab-btn" data-tab="page2">Page 2</button>
</div>
<div id="tab-general" class="tab-content active">
<div class="settings-group">
<label>Background Color</label>
<input type="color" id="bg-color-picker" value="<?= htmlspecialchars($bgColor) ?>">
@ -147,15 +117,6 @@ $successText2Size = $settings['success_text_2_size'] ?? '0.9';
<label>Pop-up Color</label>
<input type="color" id="popup-color-picker" value="<?= htmlspecialchars($popupColor) ?>">
</div>
<div class="settings-group">
<label>Success Box Y Offset (px)</label>
<input type="number" id="second-page-box-pos-y-input" value="<?= htmlspecialchars($secondPageBoxPosY) ?>">
</div>
<div class="settings-group">
<label>Image Border Radius (px)</label>
<input type="number" id="image-border-radius-input" value="<?= htmlspecialchars($imageBorderRadius) ?>">
</div>
<div class="settings-group">
<label>Background Image</label>
<button class="btn-small" onclick="document.getElementById('bg-image-input').click()">Upload</button>
@ -164,13 +125,102 @@ $successText2Size = $settings['success_text_2_size'] ?? '0.9';
<?php endif; ?>
<input type="file" id="bg-image-input" accept="image/*">
</div>
<div class="settings-group">
<label>Image Rounding (px)</label>
<input type="range" id="image-radius-picker" min="0" max="100" value="<?= (int)str_replace('px', '', $imageRadius) ?>">
</div>
</div>
<div id="tab-page1" class="tab-content">
<div class="settings-group">
<label>Title Text</label>
<input type="text" class="setting-input" data-key="p1_title_text" value="<?= htmlspecialchars($p1TitleText) ?>">
</div>
<div class="settings-group">
<label>Title Color</label>
<input type="color" class="setting-input" data-key="p1_title_color" value="<?= htmlspecialchars($p1TitleColor) ?>">
</div>
<div class="settings-group">
<label>Title Size (rem)</label>
<input type="range" class="setting-input" data-key="p1_title_size" min="1" max="5" step="0.1" value="<?= (float)str_replace('rem', '', $p1TitleSize) ?>">
</div>
<div class="settings-group">
<label>Title Font</label>
<select class="setting-input" data-key="p1_title_font">
<?php foreach ($fonts as $font): ?>
<option value="<?= $font ?>" <?= $p1TitleFont === $font ? 'selected' : '' ?>><?= $font ?></option>
<?php endforeach; ?>
</select>
</div>
<hr>
<div class="settings-group">
<label>Yes Button Color</label>
<input type="color" class="setting-input" data-key="yes_btn_color" value="<?= htmlspecialchars($yesBtnColor) ?>">
</div>
<div class="settings-group">
<label>No Button Color</label>
<input type="color" class="setting-input" data-key="no_btn_color" value="<?= htmlspecialchars($noBtnColor) ?>">
</div>
</div>
<div id="tab-page2" class="tab-content">
<div class="settings-group">
<label style="display: flex; align-items: center; gap: 5px;">
<input type="checkbox" id="preview-page2-toggle"> Preview Page 2
</label>
</div>
<div class="settings-group">
<label>Line 1 Text</label>
<input type="text" class="setting-input" data-key="p2_line1_text" value="<?= htmlspecialchars($p2Line1Text) ?>">
</div>
<div class="settings-group">
<label>Line 2 Text</label>
<input type="text" class="setting-input" data-key="p2_line2_text" value="<?= htmlspecialchars($p2Line2Text) ?>">
</div>
<div class="settings-group">
<label>Text Color</label>
<input type="color" class="setting-input" data-key="p2_text_color" value="<?= htmlspecialchars($p2TextColor) ?>">
</div>
<div class="settings-group">
<label>Text Size (rem)</label>
<input type="range" class="setting-input" data-key="p2_text_size" min="1" max="3" step="0.1" value="<?= (float)str_replace('rem', '', $p2TextSize) ?>">
</div>
<div class="settings-group">
<label>Text Font</label>
<select class="setting-input" data-key="p2_text_font">
<?php foreach ($fonts as $font): ?>
<option value="<?= $font ?>" <?= $p2TextFont === $font ? 'selected' : '' ?>><?= $font ?></option>
<?php endforeach; ?>
</select>
</div>
<hr>
<div class="settings-group">
<label>Hint Text</label>
<input type="text" class="setting-input" data-key="p2_hint_text" value="<?= htmlspecialchars($p2HintText) ?>">
</div>
<div class="settings-group">
<label>Hint Color</label>
<input type="color" class="setting-input" data-key="p2_hint_color" value="<?= htmlspecialchars($p2HintColor) ?>">
</div>
<div class="settings-group">
<label>Hint Size (rem)</label>
<input type="range" class="setting-input" data-key="p2_hint_size" min="0.5" max="2" step="0.05" value="<?= (float)str_replace('rem', '', $p2HintSize) ?>">
</div>
<div class="settings-group">
<label>Hint Font</label>
<select class="setting-input" data-key="p2_hint_font">
<?php foreach ($fonts as $font): ?>
<option value="<?= $font ?>" <?= $p2HintFont === $font ? 'selected' : '' ?>><?= $font ?></option>
<?php endforeach; ?>
</select>
</div>
</div>
</div>
</div>
<div class="container" id="main-container">
<div class="container">
<div id="proposal-box">
<h1 id="proposal-text-display"><?= htmlspecialchars($proposalText) ?></h1>
<h1 class="p1-title"><?= htmlspecialchars($p1TitleText) ?></h1>
<div class="image-preview-container has-image">
<img id="preview-img" src="<?= htmlspecialchars($valentineImage) ?>" alt="Valentine Image">
@ -183,9 +233,9 @@ $successText2Size = $settings['success_text_2_size'] ?? '0.9';
</div>
<div id="success-message">
<p class="success-text" id="success-text-1-display"><?= htmlspecialchars($successText1) ?></p>
<p class="success-text success-text-small" id="success-text-2-display"><?= htmlspecialchars($successText2) ?></p>
<div class="redirect-hint">Redirecting you to a special surprise in 15 seconds...</div>
<p class="success-text p2-line1"><?= htmlspecialchars($p2Line1Text) ?></p>
<p class="success-text p2-line2"><?= htmlspecialchars($p2Line2Text) ?></p>
<div class="redirect-hint"><?= htmlspecialchars($p2HintText) ?></div>
</div>
</div>