-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
87 lines (80 loc) · 3.7 KB
/
Copy pathapp.html
File metadata and controls
87 lines (80 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>agapay - Chat</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<link rel="icon" type="image/png" href="pingu.png">
<script src="https://cdn.jsdelivr.net/npm/showdown@2.1.0/dist/showdown.min.js"></script>
<link rel="stylesheet" href="app.css">
</head>
<body>
<nav class="navbar">
<div class="logo"><a href="index.html">agapay</a></div>
<ul class="nav-links">
<li><a href="app.html">Chat</a></li>
<li><a href="about.html">About</a></li>
</ul>
<div id="auth-section">
<span class="username-display" id="username-display"></span>
<button class="btn btn-primary" onclick="handleSignOut()">Sign Out</button>
</div>
<button class="nav-toggle" onclick="toggleMobileMenu()">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<line x1="4" y1="12" x2="20" y2="12"></line>
<line x1="4" y1="6" x2="20" y2="6"></line>
<line x1="4" y1="18" x2="20" y2="18"></line>
</svg>
</button>
</nav>
<main>
<div class="chat-container">
<div class="chat-messages" id="chat-messages">
<!-- Initial assistant message -->
<div class="message assistant">
<div class="message-avatar">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="10"></circle>
<path d="M12 8v4"></path>
<path d="M12 16h.01"></path>
</svg>
</div>
<div class="message-bubble">
<p>Hello! I'm Miako, your AI assistant. How can I help you today?</p>
</div>
</div>
</div>
<div class="chat-input-container">
<input type="text" class="chat-input" id="chat-input" placeholder="Type your message..."
onkeypress="handleKeyPress(event)">
<button class="send-btn" onclick="sendMessage()">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<line x1="22" y1="2" x2="11" y2="13"></line>
<polygon points="22 2 15 22 11 13 2 9 22 2"></polygon>
</svg>
</button>
</div>
</div>
</main>
<footer class="footer">
<div class="footer-content">
<div class="footer-logo">pinguverse</div>
<div class="footer-links">
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
<a href="#">Contact Us</a>
</div>
<p class="copyright">© 2026 Pinguverse. All rights reserved.</p>
</div>
</footer>
<script src="app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/showdown@2.1.3/dist/showdown.min.js"></script>
</body>
</html>