move project
This commit is contained in:
15
Views/Home/Settings.cshtml
Normal file
15
Views/Home/Settings.cshtml
Normal file
@@ -0,0 +1,15 @@
|
||||
@model SettingsViewModel
|
||||
|
||||
@using (Html.BeginForm("Settings", "Home", FormMethod.Post)) {
|
||||
@Html.AntiForgeryToken()
|
||||
|
||||
<h2>Settings</h2>
|
||||
|
||||
<div class="mb-3">
|
||||
@Html.LabelFor(m => m.VideoPath, new { @class = "form-label" })
|
||||
@Html.TextBoxFor(m => m.VideoPath, new { @class = "form-control" })
|
||||
@Html.ValidationMessageFor(m => m.VideoPath, "", new { @class = "text-danger" })
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn btn-primary">Save Settings</button>
|
||||
}
|
Reference in New Issue
Block a user