VirtualTask/Views/Chiusure/Create.cshtml
2023-11-30 12:38:13 +01:00

75 lines
3.3 KiB
Plaintext

@model VirtualTask.Models.Chiusure
@{
ViewData["Title"] = "Nuovo";
Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml";
}
<div class="agy-project-wrapper agy-project-page-wrapper">
<div class="container">
<div class="row">
<div class="row">
<div class="col-md-4">
<form asp-action="Create">
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<div class="form-group">
<h5><label asp-for="cccodice" class="agy-client-quote"></label></h5>
<input asp-for="cccodice" class="agy-form-field require" placeholder="Codice" />
<span asp-validation-for="cccodice" class="text-danger"></span>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-12">&nbsp;</div>
<div class="form-group">
<h5><label asp-for="ccdescr" class="agy-client-quote"></label></h5>
<input asp-for="ccdescr" class="agy-form-field require" placeholder="Descrizione" />
<span asp-validation-for="ccdescr" class="text-danger"></span>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-12">&nbsp;</div>
<div class="form-group">
<h5><label asp-for="ccdessup" class="agy-client-quote"></label></h5>
<input asp-for="ccdessup" class="agy-form-field require" placeholder="Descrizione Supplementare" />
<span asp-validation-for="ccdessup" class="text-danger"></span>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-12">&nbsp;</div>
<div class="form-group">
<input type="submit" value="Salva" class="agy-btn submitForm" />
</div>
@Html.HiddenFor(x => x.cccodazi)
@Html.HiddenFor(x => x.ccflfatt)
@Html.HiddenFor(x => x.ccflrep)
@Html.HiddenFor(x => x.cctipcod)
@Html.HiddenFor(x => x.ccgruppo)
@Html.HiddenFor(x => x.ccimpint)
@Html.HiddenFor(x => x.ccimpman)
@Html.HiddenFor(x => x.ccserint)
@Html.HiddenFor(x => x.ccserman)
@Html.HiddenFor(x => x.ccnumore)
@Html.HiddenFor(x => x.ccperman)
@Html.HiddenFor(x => x.corecom)
@Html.HiddenFor(x => x.codtobso)
@Html.HiddenFor(x => x.ccriapre)
@Html.HiddenFor(x => x.ccchiint)
@Html.HiddenFor(x => x.ccrapabi)
@Html.HiddenFor(x => x.ccrapobb)
</form>
</div>
</div>
<div>
<a asp-action="Index">Torna alla lista</a>
</div>
@section Scripts {
@{
await Html.RenderPartialAsync("_ValidationScriptsPartial");
}
}
</div>
</div>
</div>
<hr />