20 lines
553 B
Plaintext
20 lines
553 B
Plaintext
@model MileageTraker.Web.ViewModels.CreateLog.CreateLogViewModel
|
|
@{
|
|
|
|
ViewBag.Title = "Enter Mileage Log";
|
|
}
|
|
|
|
@using (Html.BeginForm("Index", "CreateLog", FormMethod.Post, new { @class = "form-horizontal" }))
|
|
{
|
|
<fieldset>
|
|
<legend>@ViewBag.Title</legend>
|
|
@Html.Partial("_ValidationSummary")
|
|
@Html.EditorForModel()
|
|
<div class="control-group">
|
|
<div class="controls">
|
|
<input type="submit" value="Submit" class="btn btn-primary" />
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
}
|