First Commit
This commit is contained in:
Executable
+25
@@ -0,0 +1,25 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user