Files
MileageTraker/Web/Views/Log/Create.cshtml
T

24 lines
620 B
Plaintext

@model MileageTraker.Web.ViewModels.Log.LogViewModel
@{
ViewBag.Title = "Create Log";
}
@{ Html.RenderPartial("BackToLogs"); }
@Html.Partial("_StatusMessage")
<h2 class="center-content"><i class="fa fa-road"></i> @ViewBag.Title</h2>
@using (Html.BeginForm("Create", "Log", 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>
}