diff options
| -rw-r--r-- | backend/admin/templates/game_edit.html | 2 | ||||
| -rw-r--r-- | backend/admin/templates/user_edit.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backend/admin/templates/game_edit.html b/backend/admin/templates/game_edit.html index 764b577..b2caf8f 100644 --- a/backend/admin/templates/game_edit.html +++ b/backend/admin/templates/game_edit.html @@ -5,7 +5,7 @@ {{ end }} {{ define "content" }} -<form> +<form method="post"> <div> <label>Game ID</label> <input type="text" name="game_id" value="{{ .Game.GameID }}" readonly required> diff --git a/backend/admin/templates/user_edit.html b/backend/admin/templates/user_edit.html index 9089b1e..bde7c84 100644 --- a/backend/admin/templates/user_edit.html +++ b/backend/admin/templates/user_edit.html @@ -5,7 +5,7 @@ {{ end }} {{ define "content" }} -<form> +<form method="post"> <div> <label>User ID</label> <input type="text" name="user_id" value="{{ .User.UserID }}" readonly required> |
