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

49 lines
2.0 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 CreateReferenceDto
@{
ViewData["Title"] = "CreateReference";
Layout = "~/Views/AdminLayout/Index.cshtml";
}
<div class="content">
<div class="container-fluid">
<h4 class="page-title">Ana Sayfa Referanslarımız İşlemleri</h4>
<div class="row">
<div class="col-md-12">
<form asp-action="CreateReference" method="post" enctype="multipart/form-data">
<div class="card">
<div class="card-header">
<div class="card-title">Yeni Referans Girişi</div>
</div>
<div class="card-body">
<div class="form-group row">
<label for="ImageFile" class="col-md-2 col-form-label">Logo</label>
<div class="col-md-10">
<input type="file" class="form-control" asp-for="ImageFile" id="ImageFile">
<span asp-validation-for="ImageFile" class="text-danger"></span>
</div>
</div>
<div class="form-group row">
<label for="WebUrl" class="col-md-2 col-form-label">Web Adresi</label>
<div class="col-md-10">
<input type="text" class="form-control" asp-for="WebUrl" id="WebUrl">
<span asp-validation-for="WebUrl" class="text-danger"></span>
</div>
</div>
</div>
<div class="card-action">
<button class="btn btn-success">Kaydet</button>
<a href="/Reference/Index/" class="btn btn-warning ml-2">Listeye Dön</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>