-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
28 lines (27 loc) · 759 Bytes
/
index.php
File metadata and controls
28 lines (27 loc) · 759 Bytes
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
<?php
require_once __DIR__ . '/auth.php';
$user = getCurrentUser();
if ($user) {
header('Location: ' . BASE_URL . '/checklist.php');
exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Voudou Ropes</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<div class="landing">
<h1>Voudou Ropes</h1>
<p class="tagline">Master the art, one knot at a time.</p>
<div class="landing-actions">
<a href="register.php" class="btn btn-primary btn-large">Get Started</a>
<a href="login.php" class="btn btn-outline btn-large">Log In</a>
</div>
</div>
</body>
</html>