jazzed up the "not implemented" dialog, because why not

This commit is contained in:
2026-02-17 23:12:47 -07:00
parent 53925d0ef5
commit 95221a8f40
3 changed files with 37 additions and 14 deletions
-1
View File
@@ -25,7 +25,6 @@ _(italicized items can be deferred)_
- ~~Conferences List honor "hide in list" flag~~ - ~~Conferences List honor "hide in list" flag~~
- Community Admin Menu: - Community Admin Menu:
- Set Community Category - Set Community Category
- Set Community Services
- Membership Control - Membership Control
- E-Mail to All Members - E-Mail to All Members
- Display Audit Records - Display Audit Records
+1 -1
View File
@@ -1,6 +1,6 @@
{* {*
* Amsterdam Web Communities System * Amsterdam Web Communities System
* Copyright (c) 2025 Erbosoft Metaverse Design Solutions, All Rights Reserved * Copyright (c) 2025-2026 Erbosoft Metaverse Design Solutions, All Rights Reserved
* *
* This Source Code Form is subject to the terms of the Mozilla Public * This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
+36 -12
View File
@@ -1,22 +1,46 @@
{* {*
* Amsterdam Web Communities System * Amsterdam Web Communities System
* Copyright (c) 2025 Erbosoft Metaverse Design Solutions, All Rights Reserved * Copyright (c) 2025-2026 Erbosoft Metaverse Design Solutions, All Rights Reserved
* *
* This Source Code Form is subject to the terms of the Mozilla Public * This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. * file, You can obtain one at https://mozilla.org/MPL/2.0/.
*} *}
<div class="flex"> <div class="p-4">
<div class="flex-1 p-4"> <!-- Error Dialog -->
<div class="mb-8"> <div class="max-w-2xl w-full">
<h1 class="text-blue-800 text-4xl font-bold mb-2">Amsterdam: Function Not Implemented</h1> <div class="bg-white border-2 border-gray-600 rounded-lg shadow-2xl overflow-hidden">
<hr class="border-2 border-gray-400 w-4/5 mb-4"> <!-- Dialog Header -->
<p class="text-black text-sm mb-4"> <div class="bg-gray-600 px-6 py-4">
You've stumbled into a function that's not implemented yet. The function path is <code>{{ path }}</code>. <h1 class="text-white text-2xl font-bold text-center flex items-center justify-center gap-3">
</p> <span class="text-3xl">🚧</span>Amsterdam: Function Not Implemented<span class="text-3xl">🚧</span>
<p class="text-black text-sm mb-4"> </h1>
<a href="/">Click here</a> to return to the home page. </div>
</p>
<!-- Dialog Body -->
<div class="px-8 py-8">
<div class="text-center mb-8">
<p class="text-gray-800 text-lg leading-relaxed">You've stumbled into a function that's not implemented yet.</p>
<p class="text-gray-800 text-lg leading-relaxed">The function path is <code>{{ path }}</code>.</p>
</div>
<!-- Action Buttons -->
<div class="flex gap-4 justify-center">
{{ if isset(recovery) }}
<a href="{{ recovery }}"
class="bg-blue-600 hover:bg-blue-700 text-white font-bold px-8 py-3 rounded-lg text-lg transition-colors shadow-lg hover:shadow-xl flex items-center gap-2">
<span class="text-xl">↩️</span>
Go Back
</a>
{{ else }}
<a href="/"
class="bg-gray-600 hover:bg-gray-700 text-white font-bold px-8 py-3 rounded-lg text-lg transition-colors shadow-lg hover:shadow-xl flex items-center gap-2">
<span class="text-xl">↩️</span>
Return to Home Page
</a>
{{ end }}
</div>
</div>
</div> </div>
</div> </div>
</div> </div>