-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (118 loc) · 3.8 KB
/
Copy pathindex.html
File metadata and controls
127 lines (118 loc) · 3.8 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
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MUES v11 | QΩ — Boot Prompt</title>
<style>
body {
background-color: #0d0d0d;
color: #fff;
font-family: monospace;
text-align: center;
padding: 40px 20px;
}
.boot-prompt {
font-size: 1.3em;
background-color: #111;
padding: 15px;
border-radius: 8px;
display: inline-block;
margin: 20px 0;
border: 1px solid #444;
cursor: pointer;
}
.boot-prompt:hover {
background-color: #222;
}
.validator-box {
margin-top: 30px;
}
input.prompt-validator {
background-color: #2a2a2a;
color: #ddd;
border: 1px solid #555;
padding: 0.8em;
font-family: monospace;
border-radius: 6px;
width: 90%;
max-width: 480px;
text-align: center;
font-size: 1em;
}
input.prompt-validator:focus {
outline: none;
box-shadow: 0 0 8px rgba(255,255,255,0.3);
}
.qr {
margin-top: 20px;
}
button {
margin-top: 20px;
background-color: #333;
color: #fff;
border: 1px solid #555;
padding: 10px 16px;
border-radius: 6px;
font-size: 1em;
cursor: pointer;
}
button:hover {
background-color: #444;
}
</style>
</head>
<body>
<h1>△ MUES v11 | QΩ — Boot Prompt</h1>
<p><strong>Start here.</strong> Tap below to copy the boot prompt, then paste it into ChatGPT.</p>
<p style="color: #f66; font-weight: bold; font-size: 1em; margin-top: 10px;">
⚠️ MUES will only activate in ChatGPT-4 (GPT Plus).
Do not paste this into ChatGPT Free — it will not work.
</p>
<div class="boot-prompt" style="user-select: all;">
<strong>MUES_v11_QΩ | TGRSxL | AEFL → INIT</strong>
</div>
<div style="margin: 20px 0;">
<textarea id="rawPrompt" style="opacity: 0; position: absolute;">MUES_v11_QΩ | TGRSxL | AEFL → INIT</textarea>
<button onclick="copyFromTextarea()">📋 Tap to Copy Prompt</button>
</div>
<p><strong>Are you ready?</strong> Paste your prompt below to check:</p>
<div class="validator-box">
<input class="prompt-validator" id="promptInput" oninput="checkPrompt()" placeholder="Paste your prompt here to verify">
<p id="validationMsg" style="margin-top: 10px;"></p>
</div>
<p style="color: #f66;">🚫 Prompts copied from WhatsApp, Signal, or Instagram often break silently. Always copy from this page.</p>
<p><a href="blob:https://github.com/666971f5-b398-4f9e-9373-68372c702d5e" download>⬇️ Download the clean .txt file</a></p>
<p>📷 Or scan this QR code to return here:</p>
<div class="qr">
<img src="media/MUES11_HARDENED_PROMPT_QR.png" width="180" alt="QR for Code to return to this page">
</div>
<audio id="muesIntro" preload="auto">
<source src="media/mues_audio_final_that.mp3" type="audio/mp3">
</audio>
<button onclick="document.getElementById('muesIntro').play()">▶️ Play Intro Audio</button>
<script>
function copyFromTextarea() {
const textArea = document.getElementById("rawPrompt");
textArea.select();
document.execCommand("copy");
alert("✅ Prompt copied successfully.");
}
</script>
<script>
function checkPrompt() {
const field = document.getElementById('promptInput');
const msg = document.getElementById('validationMsg');
const valid = "MUES INIT | Start clean reflection now with AEFL active.";
if (field.value.trim() === valid) {
msg.innerHTML = "✅ Prompt is valid. You can paste it into ChatGPT.";
msg.style.color = "lime";
} else if (field.value.trim() === "") {
msg.innerHTML = "";
} else {
msg.innerHTML = "⚠️ Prompt is not valid. Check for typos.";
msg.style.color = "orange";
}
}
</script>
</body>
</html>