VirtualTask/Views/Chiusure/Create.cshtml
2023-10-09 16:08:25 +02:00

66 lines
2.1 KiB
Plaintext

@model VirtualTask.Models.Chiusure
@{
ViewData["Title"] = "Create";
}
<h1>Create</h1>
<h4>Chiusure</h4>
<hr />
<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">
<label asp-for="cccodice" class="control-label"></label>
<input asp-for="cccodice" class="form-control" />
<span asp-validation-for="cccodice" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="ccdescr" class="control-label"></label>
<input asp-for="ccdescr" class="form-control" />
<span asp-validation-for="ccdescr" class="text-danger"></span>
</div>
<label asp-for="ccdessup" class="control-label"></label>
<div class="form-group">
<input asp-for="ccdessup" class="form-control" />
<span asp-validation-for="ccdessup" class="text-danger"></span>
</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)
<div class="form-group">
<input type="submit" value="Create" class="btn btn-primary" />
</div>
</form>
</div>
</div>
<div>
<a asp-action="Index">Back to List</a>
</div>
@section Scripts {
@{await Html.RenderPartialAsync("_ValidationScriptsPartial");}
}