forked from bacloud22/Highest-priest-GPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (71 loc) · 3.12 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Highest priest GPT</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="area">
<ul class="circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<!-- Language Selector -->
<select id="languageSelector" onchange="changeLanguage(this.value)">
</select>
<a href="https://github.com/bacloud23/Highest-priest-GPT"><img style="position: absolute; top: 0; left: 0; border: 0; z-index: 1;"
src="https://github.blog/wp-content/uploads/2008/12/forkme_left_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div class="container">
<div class="content">
<h1 data-translate="title">Highest priest GPT</h1>
<div class="form-group">
<label for="username" data-translate="username">Username</label>
<input type="text" id="username" data-translate="usernamePlaceholder" placeholder="Enter your name" />
</div>
<button class="btn" id="joinBtn" data-translate="createChannel">
Create a new channel as a wizard ✨
</button>
<div id="questionSection">
<h3 data-translate="askQuestion">Ask a Question</h3>
<div class="form-group">
<input type="text" id="question" data-translate="questionPlaceholder" placeholder="Type your question here" />
</div>
<button class="btn" id="askBtn" data-translate="askButton">Ask Question</button>
</div>
<div id="answerSection">
<h3 data-translate="answerQuestion">Answer the Question</h3>
<p id="displayQuestion" data-translate="waitingQuestion">Waiting for a question...</p>
<div class="form-group">
<input type="text" id="answer" data-translate="answerPlaceholder" placeholder="Type your answer here" />
</div>
<button class="btn" id="answerBtn" data-translate="answerButton">Send Answer</button>
</div>
<div id="shareLink">
<!-- Shareable link for questioner will appear here -->
</div>
<div id="chat">
<h3 data-translate="chatLog">Chat Log</h3>
<div id="messageLog"></div>
</div>
</div>
</div>
<!-- PubNub SDK -->
<script src="https://cdn.pubnub.com/sdk/javascript/pubnub.4.33.0.min.js"></script>
<script src="./localization.js"></script>
<script src="./script.js"></script>
<!-- TWIPLA Tracking Code for https://wizard-gpt.pages.dev/ -->
<script>(function (v, i, s, a, t) { v[t] = v[t] || function () { (v[t].v = v[t].v || []).push(arguments) }; if (!v._visaSettings) { v._visaSettings = {} } v._visaSettings[a] = { v: '1.0', s: a, a: '1', t: t }; var b = i.getElementsByTagName('body')[0]; var p = i.createElement('script'); p.defer = 1; p.async = 1; p.src = s + '?s=' + a; b.appendChild(p) })(window, document, '//app-worker.visitor-analytics.io/main.js', '7d3eb8f3-8bb9-11ef-9280-bee4895ac99e', 'va')</script>
<!-- TWIPLA Tracking Code for https://wizard-gpt.pages.dev/ -->
</body>
</html>