10 lines
264 B
HTML
Executable File
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 %} |