11 lines
683 B
PHP
Executable File
11 lines
683 B
PHP
Executable File
<?php
|
|
$page = str_replace('.php','','bizaglo-client.php');
|
|
$title = ucwords(str_replace('-',' ',$page));
|
|
?>
|
|
<!DOCTYPE html><html><head><title><?=$title?> - WEVADS</title>
|
|
<style>body{font-family:Arial;display:flex;justify-content:center;align-items:center;height:100vh;margin:0;background:#f8fafc}
|
|
.card{text-align:center;padding:40px;border-radius:16px;background:#fff;box-shadow:0 4px 20px rgba(0,0,0,0.1)}
|
|
h1{color:#1e293b;margin-bottom:10px}p{color:#64748b}</style></head>
|
|
<body><div class="card"><h1>🚧 <?=$title?></h1><p>Module en cours de développement</p>
|
|
<a href="/" style="color:#8b5cf6;text-decoration:none;font-weight:600">← Retour Dashboard</a></div></body></html>
|