74 lines
2.9 KiB
PHP
74 lines
2.9 KiB
PHP
<?php
|
|
session_start();
|
|
require_once 'google_config.php';
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>My Calendar</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">
|
|
<i class="bi bi-calendar-check"></i>
|
|
My Calendar
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<header class="hero">
|
|
<div class="container">
|
|
<h1 class="display-4">Your Personal Calendar</h1>
|
|
<p class="lead">All your events, in one place.</p>
|
|
<?php if (isset($_SESSION['access_token'])): ?>
|
|
<a href="logout.php" class="btn btn-danger btn-lg">
|
|
<i class="bi bi-google"></i> Disconnect Google Calendar
|
|
</a>
|
|
<?php else: ?>
|
|
<a href="oauth-redirect.php" class="btn btn-primary btn-lg">
|
|
<i class="bi bi-google"></i> Connect Google Calendar
|
|
</a>
|
|
<?php endif; ?>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container my-5">
|
|
<?php if (isset($_SESSION['access_token'])): ?>
|
|
<div class="calendar-view">
|
|
<h2>Your Upcoming Events</h2>
|
|
<p>Your calendar events will be displayed here shortly.</p>
|
|
<!-- JavaScript will populate this area -->
|
|
</div>
|
|
<?php else: ?>
|
|
<div class="calendar-placeholder">
|
|
<h2>Your calendar will appear here</h2>
|
|
<p class="text-muted">Connect your Google Calendar to get started.</p>
|
|
<div class="row mt-4">
|
|
<div class="col-md-6">
|
|
<img src="https://picsum.photos/seed/calendar-1/800/600" class="img-fluid rounded" alt="A person organizing their schedule">
|
|
</div>
|
|
<div class="col-md-6">
|
|
<img src="https://picsum.photos/seed/calendar-2/800/600" class="img-fluid rounded" alt="A close-up of a calendar">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</main>
|
|
|
|
<footer class="text-center py-4">
|
|
<p>© <?php echo date("Y"); ?> My Calendar. All rights reserved.</p>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|