-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
67 lines (57 loc) · 2.38 KB
/
dashboard.php
File metadata and controls
67 lines (57 loc) · 2.38 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
60
61
62
63
64
65
66
67
<?php
session_start();
if (isset($_SESSION['username'])) {
# code...
} ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Loginly - Dashboard</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1", shrink-to-fit=no>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/styles.css">
<!-- icons -->
<script src="https://kit.fontawesome.com/df57820da4.js" crossorigin="anonymous"></script>
<!-- animate.style to animate the title -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- camera -->
<script type="text/javascript" src="https://unpkg.com/webcam-easy/dist/webcam-easy.min.js"></script>
</head>
<body>
<nav class="justify-content-end fixed-top navbar navbar-expand-sm bg-dark">
<ul class="nav">
<li class="nav-item">
<!-- we need to update this -->
<a class="text-light nav-link" href="https://github.com/EncryptEx/facial-messaging"><i class="fab fa-osi"></i> Contribute</a>
</li>
<li class="nav-item">
<!-- we need to update this -->
<a class="text-light nav-link" href="https://live.hackupc.com">Contact</a>
</li>
<li class="nav-item">
<a class="text-light nav-link" href="index.html">Sign up</a>
</li>
</ul>
</nav>
<div class="bg-info jumbotron text-center">
<h1 class="mt-4 display-1 animate__animated animate__bounce">Loginly</h1>
<p class="mt-4">Secure messaging with facial recognition software logins</p>
</div>
<div class="container">
<h3>Welcome <?php echo $_SESSION['username']; ?></h3>
Now you are able to log in without passwords! Woah! 🧙♂️
</div>
<br><br>
<div class="container">
<h3>How do I log-in to Loginly?</h3>
<p>Rather than using a password to sign in, Loginly uses facial recognition
software to allow for secure access to your account without the need for
memorizing lengthy passcodes.
</p>
</div>
</body>
</html>