Files
2025-09-16 15:00:16 +02:00

10 lines
264 B
HTML
Executable File

{% extends "base.html" %}
{% block content %}
<h1>AFK Management</h1>
<form method="post">
<label for="reason">Reason for AFK:</label>
<input type="text" name="reason" id="reason">
<button type="submit">Set AFK</button>
</form>
{% endblock %}