-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
77 lines (77 loc) · 4.2 KB
/
app.html
File metadata and controls
77 lines (77 loc) · 4.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ScheduGraph</title>
<link rel="shortcut icon" href="1.jpg" type="image/x-icon">
<link rel="stylesheet" href="app.css">
<script src="./app.js"></script>
</head>
<body id="body" onload="getUser()">
<header>
<span class="link"><img src="1.jpg" width="50" height="50" style="border-radius: 50%;"></span>
<span class="link">Home</span>
<span class="link">Services</span>
<a href="account.html"><span class="link" id="account"></span></a>
<span id="themes" class="themes"><button style="background-color:rgb(144, 140, 140); border: 0px;" id="theme" onclick="changeTheme()" class="theme" title="Change Theme">🌙</button></span>
<span class="makeAccount"><button title="Create Account" class="create" onmouseenter="showMeaning1()" onmouseleave="hideMeaning1()" onclick="createAccount()">➕<span id="label"></span></button></span>
<span class="themes"><button id="contribute" class="theme" onclick="//contribute()" title="Contribute to Upgrade ScheduGraph" style="background-color:rgb(144, 140, 140); border: 0px;">📓</button></span>
</header>
<div id="intro">
<br>
<br>
<img src="schedubar.webp" width="500" height="500">
<div style="margin-top: 8%; margin-left: 12px;">
<h1>A world where you need your privacy and events</h1>
<p>
In ScheduGraph, you can save everything you need, make notes, keep track of events, keep track of things, add due dates and even see what you have accomplished over time. You will see how many notes you have, how many schedules, and also how many schedules are done. With all this, you don't need to worry about forgetting an event or even losing your password. This is a place built for everyone. Why not make an account for FREE today?
</p>
</div>
</div>
<div class="both_sides">
<div id="signLog">
<br>
<br>
<br>
<br>
<center>
<a href="#https://www.youtube.com/@ScheduGraph" target="_top"><img src="DALL·E 2024-10-26 15.27.46 - A logo design featuring the text 'ScheduGraph!' clearly and accurately. The word is stylized with a sleek, modern font, with 'Schedu' and 'Graph' comb.webp" width="200" height="200" style="border-radius: 50%;"></a>
</center>
<h2>Create an account and start tracking schedules.</h2>
<p>Make an account today for FREE!</p>
<div id="form"></div>
</div>
<div id="usefulness">
<br><br><br><br><br>
<h1>Questions</h1>
<button id="askedQS1" onclick="showANS1()" ondblclick="hideANS1()">
<h3>What's ScheduGraph?</h3>
<div id="ans1"></div>
</button>
<button id="askedQS2" onclick="showANS2()" ondblclick="hideANS2()">
<h3>How do you make an account?</h3>
<div id="ans2"></div>
</button>
<button id="askedQS3" onclick="showANS3()" ondblclick="hideANS3()">
<h3>How do I change themes?</h3>
<div id="ans3"></div>
</button>
<button id="askedQS4" onclick="showANS4()" ondblclick="hideANS4()">
<h3>How do I add a comment?</h3>
<div id="ans4"></div>
</button>
<button id="askedQS5" onclick="showANS5()" ondblclick="hideANS5()">
<h3>How can I contribute to make ScheduGraph better?</h3>
<div id="ans5"></div>
</button>
<sub style="margin-top: 12px; color: black;"><span class="info" style="margin-right: 0px;">ℹ️</span><span id="realInfo">Info: Double Click a question to close it.</span></sub>
<br>
</div>
<div><h1 style="color: grey;">Comments Coming Soon...</h1></div>
</div>
<footer style="background-color: black; color: white; padding: 5px;"> © 2025 ScheduGraph. All rights reserved. ®
<hr>
</footer>
</body>
</html>