diff options
| author | 2024-08-17 14:06:31 +0200 | |
|---|---|---|
| committer | 2024-08-17 13:25:58 +0100 | |
| commit | 2676438a3acfde16d6f5e86ed98a6dbcb40a1fb8 (patch) | |
| tree | 23d5690c6cde47ea60e3c5baa171b281829addf7 | |
| parent | Add ff-bot.yml configuration (diff) | |
Provide an error message when JS is disabled
| -rw-r--r-- | thallium-frontend/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/thallium-frontend/index.html b/thallium-frontend/index.html index 032e256..5ae088c 100644 --- a/thallium-frontend/index.html +++ b/thallium-frontend/index.html @@ -11,6 +11,11 @@ <body> <div id="root"></div> <script type="module" src="/src/main.tsx"></script> + <noscript> + <h1>Hi, we've noticed you're browsing with JavaScript disabled.</h1> + <p>We are sorry, but we do not support this at the time.</p> + <p>Please enable JavaScript to use our site.</p> + </noscript> </body> </html> |