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

25 lines
645 B
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Add Custom Command</title>
</head>
<body>
<h1>Add a Custom Command</h1>
<form action="{{ url_for('add_command') }}" method="POST">
<label for="guild_id">Guild ID:</label>
<input type="text" name="guild_id" required>
<label for="command_name">Command Name:</label>
<input type="text" name="command_name" required>
<label for="response">Response:</label>
<textarea name="response" required></textarea>
<button type="submit">Create Command</button>
</form>
</body>
</html>