22 lines
543 B
Plaintext
22 lines
543 B
Plaintext
@model MileageTraker.Web.Models.Log
|
|
|
|
@{
|
|
ViewBag.Title = "Create Log";
|
|
}
|
|
|
|
@{ Html.RenderPartial("BackToLogs"); }
|
|
|
|
<h2 class="center-content">@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>
|
|
}
|