-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
59 lines (49 loc) · 2.11 KB
/
Copy pathindex.php
File metadata and controls
59 lines (49 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
$page_title = 'Home';
//imports header.php
require_once 'includes/header.php';
?>
<section class="hero-section">
<div class="row align-items-center w-100">
<div class="col-md-6">
<h1 class="display-5 fw-bold mb-3">
Organize your university work with StudyMate
</h1>
<p class="lead text-muted mb-4">
StudyMate helps students manage subjects, assignments, exams,
lab tests, viva preparation, and daily study tasks in one simple place.
</p>
<?php if (isset($_SESSION['user_id'])): ?>
<a href="<?php echo $base_url; ?>/dashboard.php" class="btn btn-secondary btn-lg">
Go to Dashboard
</a>
<a href="<?php echo $base_url; ?>/tasks/index.php" class="btn btn-outline-secondary btn-lg">
Manage Tasks
</a>
<?php else: ?>
<a href="<?php echo $base_url; ?>/auth/register.php" class="btn btn-secondary btn-lg">
Get Started
</a>
<a href="<?php echo $base_url; ?>/auth/login.php" class="btn btn-outline-secondary btn-lg">
Login
</a>
<?php endif; ?>
</div>
<div class="col-md-6 mt-4 mt-md-0">
<div class="card shadow-sm border-0">
<div class="card-body p-4">
<h4 class="fw-bold mb-3">Main Features</h4>
<ul class="list-group list-group-flush">
<li class="list-group-item">Create subjects/modules</li>
<li class="list-group-item">Add study tasks and deadlines</li>
<li class="list-group-item">Set task priority</li>
<li class="list-group-item">Mark tasks as completed</li>
<li class="list-group-item">View dashboard summary</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- imports footer.php -->
<?php require_once 'includes/footer.php'; ?>