Add and delete service reminders

This commit is contained in:
2015-10-17 23:24:10 -04:00
parent a6fb9d54c6
commit e42fcd16fa
17 changed files with 275 additions and 5 deletions
+19
View File
@@ -0,0 +1,19 @@
@model MileageTraker.Web.ViewModels.ServiceReminder.ServiceReminderViewModel
@{
ViewBag.Title = "Create Vehicle Service Reminder";
}
<h2 class="center-content"><i class="fa fa-clock-o"></i> @ViewBag.Title</h2>
@using (Html.BeginForm("Create", "ServiceReminder", 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>
}