Files
2020-09-20 22:07:13 -04:00

29 lines
797 B
Plaintext

@model MileageTraker.Web.ViewModels.VehicleRecall.VehicleRecallViewModel
@{
ViewBag.Title = "Enter Vehicle Recall";
}
@section Scripts {
<script type="text/javascript">
VehicleInput_ShowDetails();
</script>
}
@Html.Partial("_StatusMessage")
<h2 class="center-content"><i class="fa fa-refresh"></i> @ViewBag.Title</h2>
<h4 class="center-content">Enter an available recall for vehicle</h4>
@using (Html.BeginForm("Create", "VehicleRecall", FormMethod.Post, new { @class = "form-horizontal well center-content" }))
{
@Html.Partial("_ValidationSummary")
<fieldset>
<legend></legend>
@Html.EditorForModel()
<div class="form-actions">
<input type="submit" value="Create" class="btn btn-primary" />
</div>
</fieldset>
}