65 lines
2.0 KiB
PHP
65 lines
2.0 KiB
PHP
<?php
|
|
session_start();
|
|
if (!isset($_SESSION['user_id'])) {
|
|
header('Location: index.php');
|
|
exit;
|
|
}
|
|
$page_title = "My Notes";
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php echo htmlspecialchars($page_title); ?> - YourApp</title>
|
|
<link rel="stylesheet" href="assets/css/glass-theme.css?v=<?php echo time(); ?>">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="app-container">
|
|
<!-- Sidebar -->
|
|
<div class="sidebar">
|
|
<div class="logo">
|
|
AI-App
|
|
</div>
|
|
<ul class="nav-menu">
|
|
<li class="nav-item active">
|
|
<a href="app.php"><i class="fas fa-sticky-note"></i> Notes</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="settings.php"><i class="fas fa-cog"></i> Settings</a>
|
|
</li>
|
|
</ul>
|
|
<div class="logout-link">
|
|
<a href="logout.php"><i class="fas fa-sign-out-alt"></i> Logout</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Main Content -->
|
|
<main class="main-content">
|
|
<h1><?php echo htmlspecialchars($page_title); ?></h1>
|
|
|
|
<!-- Notes Grid -->
|
|
<div id="notes-grid" class="notes-grid">
|
|
<!-- Notes will be loaded here by JavaScript -->
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<!-- Note Editor Modal -->
|
|
<div id="note-editor-modal">
|
|
<div class="note-editor-panel glass-panel">
|
|
<textarea id="note-editor-textarea" placeholder="Start typing..."></textarea>
|
|
<div class="note-editor-footer">
|
|
<button id="save-note-btn" class="btn btn-primary">Save</button>
|
|
<input type="hidden" id="note-editor-id">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
|
|
</body>
|
|
</html>
|