Embed a floating "Ask a question" button on any site. Each iframe is tied to one of three sessions. Moderators see only their own session; the admin sees everything.
<iframe
src="/widget?session=session1"
style="position:fixed;bottom:0;right:0;width:360px;height:480px;border:0;background:transparent;z-index:9999;"
allowtransparency="true"
></iframe><iframe
src="/widget?session=session2"
style="position:fixed;bottom:0;right:0;width:360px;height:480px;border:0;background:transparent;z-index:9999;"
allowtransparency="true"
></iframe><iframe
src="/widget?session=session3"
style="position:fixed;bottom:0;right:0;width:360px;height:480px;border:0;background:transparent;z-index:9999;"
allowtransparency="true"
></iframe>Each moderator gets a private link that only shows their session's questions:
/moderate/mod145/<secret>/moderate/mod256/<secret>/moderate/mod367/<secret>Replace <secret> with the shared MODERATION_SECRET. The slug picks the session; the secret authorizes access.
The admin page is password-protected and shows questions from every session:
/adminSet the admin password in the ADMIN_PASSWORD environment variable.