Style center content for forms

This commit is contained in:
2012-12-28 15:45:23 -05:00
parent 7eff2f343a
commit ce6fd9c215
23 changed files with 197 additions and 137 deletions
+13 -9
View File
@@ -6,15 +6,19 @@
@{ Html.RenderPartial("BackToLogs"); }
<h2>@ViewBag.Title</h2>
<h2 class="center-content">@ViewBag.Title</h2>
<h3>Are you sure you wish to delete this log?</h3>
<div class="center-content label label-warning">Are you sure you wish to delete this log?</div>
@Html.DisplayForModel()
<div class="center-content well">
@using (Html.BeginForm()) {
<p>
<input type="submit" value="Delete" class="btn btn-warning" />
@Html.ActionLink("Cancel", "Details", new { id = Model.LogId }, new { @class = "btn" })
</p>
}
@Html.DisplayForModel()
@using (Html.BeginForm("Delete", "Log", FormMethod.Post, new { @class = "form-horizontal" }))
{
<div class="form-actions">
<input type="submit" value="Delete" class="btn btn-warning" />
@Html.ActionLink("Cancel", "Details", new { id = Model.LogId }, new { @class = "btn" })
</div>
}
</div>