forked from c0mpli/PiedPiper-TSEC-Hacks-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.php
97 lines (84 loc) · 3.8 KB
/
homepage.php
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<html>
<head>
<meta name="viewpoint" content="width=device-width , initial-scale=1.0">
<title>HomePage</title>
<link href="css/homepage-styles.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="navbar">
<img src="assets/img/allyshow_w_1x.png" class="logo">
<nav>
<ul>
<li><a href="https://drive.google.com/file/d/1v00fQ9upXtBZAWqC5VgPRNSzy0L7HmO0/view?usp=sharing">HOW TO USE</a></li>
<li><a href="contact.php">CONTACT</a></li>
<li><a href="personal-details.html">PERSONAL DETAILS</a></li>
<li><a href="includes/signout.inc.php">LOG OUT</a></li>
</ul>
</nav>
</div>
<br>
<br>
<h2 >Ally Suggestion: </h2>
<h3 id = "suggestion"></h3>
<br>
<h2>Thought of the day: </h2>
<h3>Laughter is the best medicine you can have </h3>
<br>
<h2>Please Rate your mood right now using the scale given below</h2>
<br>
<div class="slidecontainer">
<input type="range" min="1" max="5" value="3" class="slider" id="myRange">
<br>
<h3 id ="demo" style="display:inline-block"></h3>
</div>
<div class="row">
<div class="col">
<div class="card card1">
<a href="crossword.html" style="text-decoration:none">
<h5>Games</h5>
<p>A bunch of games to keep your mind exercised</p>
</a>
</div>
<div class="card card2">
<a href="https://www.google.com/photos/about/" style="text-decoration:none">
<h5>Memories</h5>
<p>Photos and videos to remind you of your family and friends</p>
</a>
</div>
<div class="card card3">
<a href="reminders-index.html" style="text-decoration:none">
<h5>To do list</h5>
<p>Reminders to plan your day.</p>
</a>
</div>
<div class="card card4">
<a href="https://duo.google.com/about/" style="text-decoration:none">
<h5>Relations</h5>
<p>Video Call your friends and family.</p>
</a>
</div>
<div class="card card5">
<a href="https://youtube.com/playlist?list=PLD72Ylz-Y01vcGTYmEaN9nz02o0yZMWy8" target="_blank" style="text-decoration:none">
<h5>Feel Good</h5>
<p>Cute videos of Kitty cats from the internet.</p>
</a>
</div>
</div>
</div>
</div>
</body>
<script src="js/ally-suggestion.js"></script>
<script>
var slider = document.getElementById("myRange");
var output = document.getElementById("demo");
output.innerHTML = slider.value; // Display the default slider value
// Update the current slider value (each time you drag the slider handle)
slider.oninput = function() {
localStorage.setItem("rating",this.value);
output.innerHTML = this.value;
}
</script>
</html>