yavsc/src/Yavsc/Views/SIRENExceptions/Create.cshtml
Paul Schneider 5605f77ebb button class
2025-07-12 19:00:30 +01:00

22 lines
619 B
Text

@model Yavsc.Models.Billing.ExceptionSIREN
<form asp-action="Create">
<div class="form-horizontal">
<h4>Exception SIREN</h4>
<hr />
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<div class="form-group">
@Html.TextBox("SIREN")
<div class="col-md-offset-1 col-md-10">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-primary" />
</div>
</div>
</div>
</div>
</form>
<div>
<a asp-action="Index">Back to List</a>
</div>