Files
MileageTraker/Web/Views/Purpose/Create.cshtml
T
2013-03-07 19:28:00 -05:00

20 lines
519 B
Plaintext

@model MileageTraker.Web.Models.PurposeType
@{
ViewBag.Title = "Create Purpose";
}
<h2 class="center-content">@ViewBag.Title</h2>
@using (Html.BeginForm("Create", "Purpose", 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>
}