fix: add CSRF token to participant logout form

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-22 18:24:35 -07:00
parent 80f7926985
commit 8c3b333f61

View File

@@ -41,6 +41,7 @@
<section>
<form method="POST" action="{{ url_for('participant.logout') }}">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
<button type="submit">Logout</button>
</form>
</section>