security: use more antiforgery tokens

This commit is contained in:
Gary Sharp
2025-07-25 12:32:44 +10:00
parent fd43d85778
commit 7deead494b
222 changed files with 12919 additions and 11728 deletions
@@ -4,10 +4,8 @@
ViewBag.Title = Html.ToBreadcrumb("Configuration", MVC.Config.Config.Index(), "Job Queues", MVC.Config.JobQueue.Index(null), "Create");
}
@using (Html.BeginForm())
{
@Html.HiddenFor(m => m.JobQueue.Icon)
@Html.HiddenFor(m => m.JobQueue.IconColour)
@Html.HiddenFor(m => m.JobQueue.Priority)
{
@Html.AntiForgeryToken()
<div class="form" style="width: 450px">
<table>
<tr>
@@ -15,7 +13,7 @@
Name:
</th>
<td>
@Html.EditorFor(model => model.JobQueue.Name)<br />@Html.ValidationMessageFor(model => model.JobQueue.Name)
@Html.EditorFor(model => model.Name)<br />@Html.ValidationMessageFor(model => model.Name)
</td>
</tr>
<tr>
@@ -23,7 +21,7 @@
Description:
</th>
<td>
@Html.EditorFor(model => model.JobQueue.Description)<br />@Html.ValidationMessageFor(model => model.JobQueue.Description)
@Html.EditorFor(model => model.Description)<br />@Html.ValidationMessageFor(model => model.Description)
</td>
</tr>
</table>
@@ -33,7 +31,7 @@
</div>
<script type="text/javascript">
$(function () {
$('#JobQueue_Name').focus().select();
$('#Name').focus().select();
});
</script>
}