39121-vm/index.php
2026-03-12 03:03:10 +00:00

30 lines
861 B
PHP

<?php
declare(strict_types=1);
require_once __DIR__ . '/includes/bootstrap.php';
// 简单前台跳转处理
if (isset($_GET['logout'])) {
session_start();
session_destroy();
header('Location: /');
exit;
}
?>
<!doctype html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<title>双向短信平台</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="p-5">
<div class="container text-center">
<h1>欢迎来到 Twilio 短信控制台</h1>
<p class="lead text-muted">WhatsApp 风格体验,高效沟通。</p>
<div class="mt-4">
<a href="chat.php" class="btn btn-primary btn-lg">进入聊天 (前端)</a>
<a href="admin.php" class="btn btn-outline-secondary btn-lg ms-3">进入管理 (后端)</a>
</div>
</div>
</body>
</html>