34765-vm/index.php
Flatlogic Bot 2f8b1db200 rep
2025-10-07 18:45:08 +00:00

78 lines
3.1 KiB
PHP

<?php
$project_image_url = isset($_SERVER['PROJECT_IMAGE_URL']) ? $_SERVER['PROJECT_IMAGE_URL'] : 'https://picsum.photos/1200/630';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Service Portal - Your One-Stop Repair Solution</title>
<meta name="description" content="Effortlessly book and track your device repairs. Built with Flatlogic Generator.">
<meta name="keywords" content="device repair, service portal, booking system, repair tracking, Flatlogic, php project">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:title" content="Service Portal - Your One-Stop Repair Solution">
<meta property="og:description" content="Effortlessly book and track your device repairs. Built with Flatlogic Generator.">
<meta property="og:image" content="<?php echo htmlspecialchars($project_image_url); ?>">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Service Portal - Your One-Stop Repair Solution">
<meta property="twitter:description" content="Effortlessly book and track your device repairs. Built with Flatlogic Generator.">
<meta property="twitter:image" content="<?php echo htmlspecialchars($project_image_url); ?>">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/style.css?v=<?php echo time(); ?>" rel="stylesheet">
<style>
body {
background-color: #F4F7F6;
font-family: 'Helvetica Neue', Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
}
.welcome-container {
max-width: 600px;
padding: 40px;
background: #FFFFFF;
border-radius: 0.5rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
h1 {
font-family: 'Georgia', serif;
font-weight: bold;
font-size: 3rem;
color: #333;
}
p {
font-size: 1.2rem;
color: #555;
}
.btn-primary {
background-image: linear-gradient(135deg, #4A90E2, #50E3C2);
border: none;
padding: 15px 30px;
font-size: 1.2rem;
border-radius: 50px;
transition: transform 0.2s;
}
.btn-primary:hover {
transform: scale(1.05);
}
</style>
</head>
<body>
<div class="welcome-container">
<h1>Welcome to the Service Portal</h1>
<p class="lead my-4">Your application is almost ready. The first step is to set up your database.</p>
<a href="installer/install.php" class="btn btn-primary">Go to Installer</a>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>