move project

This commit is contained in:
2025-07-27 00:33:05 +02:00
parent 4544be2999
commit 5f8fb01a9f
100 changed files with 651 additions and 406 deletions

View 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>
}