-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 1.55 KB
/
Copy pathindex.html
File metadata and controls
47 lines (43 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mint Parchment</title>
<link rel = "stylesheet" href = "general.css">
<link rel = "stylesheet" href = "styleHomePage.css">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon.png">
</head>
<body>
<script src = "general.js"></script>
<span id = "NavBtn" onclick="openNav()">☰</span>
<div id="mySidenav" class = "sidenav">
<img id = "appIcon" src = "Mint Parchment App Icon.png">
<a href="#">New Session</a>
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="#" onclick = "window.open('mindmapCanvas.html','_blank')">Draw MindMap</a>
<a href="#" id="noteBtn">Open Notes</a>
<a href="#">Clients</a>
<a href="#">Contact</a>
<br>
<br>
<p id = "chatHeader" style="text-align: center; margin-right: 5%;"><strong>Chat History</strong></p>
</div>
<div id = "main">
<button id="initBtn">Click here to download and instantiate Prompt API</button>
<div class="container">
<div class = "subcontainer" id = "notes">
<textarea id="noteBox"></textarea>
</div>
<div id="output"></div>
</div>
<div class ="container" id = "promptCont">
<textarea id = "promptBox" placeholder="Press the top button to instantiate Prompt API"></textarea>
<a href = "#" id="startBtn">Send</a>
</div>
<script src="scriptHomePage.js"></script>
</div>
</body>
<footer class="site-footer">
<p>© 2025 Mint Parchment. All rights reserved.</p>
</footer>
</html>