Files
constructdemo/ConstructorAppUI/Views/CompanyInfoVideo/UpdateCompanyInfoVideo.cshtml
2025-05-01 15:18:30 +03:00

40 lines
1.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@model UpdateCompanyInfoVideoDto
@{
ViewData["Title"] = "UpdateCompanyInfoVideo";
Layout = "~/Views/AdminLayout/Index.cshtml";
}
<div class="content">
<div class="container-fluid">
<h4 class="page-title">Ana Sayfa Başarılarımız Viedo İşlemleri</h4>
<div class="row">
<div class="col-md-12">
<form method="post">
<div class="card">
<div class="card-header">
<div class="card-title">Hakkımızda Viedo Güncelleme</div>
</div>
<input type="hidden" asp-for="CompanyInfoVideoID" />
<div class="card-body">
<div class="form-group row">
<label for="VideoUrl" class="col-md-2 col-form-label">VideoUrl</label>
<div class="col-md-10">
<input type="text" class="form-control" asp-for="VideoUrl" id="VideoUrl">
<span asp-validation-for="VideoUrl" class="text-danger"></span>
</div>
</div>
</div>
<div class="card-action">
<button class="btn btn-success">Kaydet</button>
<a href="/CompanyInfoVideo/Index/" class="btn btn-warning ml-2">Listeye Dön</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>