-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsecpage.html
More file actions
115 lines (109 loc) · 3.72 KB
/
secpage.html
File metadata and controls
115 lines (109 loc) · 3.72 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!-- This is an OpenSource Project:
Give Credits before using it anywhere and changes.
Thanks to
Rohit Vishu Achari
Varun Gaur
Vansh Dixit
for Helping and Fixing everything -->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Study Session Website</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<!-- font awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<body>
<div id="floatingNavbar">
<div id="timeAndDate"></div>
<p>Your Study Room</p>
<button id="changeBackgroundBtn" onclick="changeBackgroundImage()">
Switch Background
</button>
</div>
<div id="left">
<div id="leftHeading">
<div>Your Notes here</div>
</div>
<div id="notes" contenteditable="true">
<!-- User's notes go here -->
</div>
<div id="leftHeading">
<div>List of Tasks</div>
</div>
<div class="container">
<div class="input-container">
<input type="text" id="taskInput" placeholder="Enter your task" />
<button onclick="addTask()">Add</button>
</div>
<ul id="taskList"></ul>
<button onclick="clearTasks()">Clear</button>
</div>
<!-- User's task list goes here -->
</div>
<div id="middle">
<div class="quote-container" id="quoteDisplay"></div>
<div id="pomodoro">
<div id="clock" class="flip-clock active">00:00:00</div>
<div id="buttons">
<button onclick="startTimer(60*60)">1 Hr</button>
<button onclick="startTimer(2*60*60)">2 Hr</button>
<button onclick="startTimer(45*60)">45 Min</button>
<button id="pomodoroButton" class="pomodoroPause" onclick="pausePomodoro()" style="
padding: 10px 100px 10px 100px;
margin: 10px 0px;
transition: all ease-in-out 0.2s;
">
<i id="pauseIcon" class="fa fa-pause"></i>
</button>
</div>
</div>
<div id="audioSection">
<div class="nowPlayingSection">
<img
src="https://media.tenor.com/bUDsN9jYARQAAAAC/disc-music.gif"
alt="music snipping disk gif"
height="30px"
/>
<div class="musicPlayer">
<div class="musicPlayerHeader">
<h4>Now Playing...</h4>
<p>Enjoy your work :) </p>
</div>
<div class="musicPlayerNav">
<i class="fa-solid fa-angle-left"></i>
<i class="fa-solid fa-pause" onclick="playPause()"></i>
<i class="fa-solid fa-angle-right"></i>
</div>
</div>
</div>
<div class="audioButtonContainer">
<button class="audioButton" onclick="playAudio('music/Bollywood_lofi.mp3')">
Bollywood Lofi Beats
</button>
<button class="audioButton" onclick="playAudio('music/audio3.mp3')">
Lofi Beats
</button>
<button class="audioButton" onclick="playAudio('music/BinauralBeat.mp3')">
Binaural Beats
</button>
</div>
</div>
</div>
<div id="right">
<div id="tabs">
<div id="chatTab" class="selected" onclick="showIframe('chatgpt')">Ai Assistant</div>
<div id="searchTab" onclick="showIframe('google')">Google Search</div>
</div>
<div id="iframeContainer">
<iframe id="chatgpt" src="https://www.blackbox.ai/"></iframe>
<iframe id="google" src="https://www.google.com/search?igu=1"></iframe>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>