45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
@model Church.Net.Entity.Religion
|
|
|
|
@{
|
|
ViewBag.Title = "Create Religion";
|
|
ViewBag.returnUrl2 = Url.Action("Index", "NewVisitors");
|
|
ViewBag.returnUrl2Title = "新朋友管理";
|
|
|
|
ViewBag.returnUrl = Url.Action("Index");
|
|
ViewBag.returnUrlTitle = "宗教信仰選項管理";
|
|
}
|
|
|
|
<div class="text-center g-mb-50--md">
|
|
<h2 class="h4 g-mb-0">
|
|
Create <span class="g-color-primary g-ml-5">Religion</span>
|
|
</h2>
|
|
</div>
|
|
|
|
@using (Html.BeginForm())
|
|
{
|
|
@Html.AntiForgeryToken()
|
|
<div class="g-bg-img-hero g-bg-pos-top-center g-pos-rel g-z-index-1 g-mt-minus-100" style="background-image: url(/Images/svg/svg-bg5.svg);">
|
|
<div class="container g-pt-150 g-pb-30">
|
|
<div class="row">
|
|
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
|
|
<div class="col-md-6 g-mb-20--md">
|
|
@Html.LabelFor(model => model.Name, htmlAttributes: new { @class = "g-font-weight-500 g-font-size-15 g-pl-30" })
|
|
|
|
@Html.EditorFor(model => model.Name, new { htmlAttributes = new { @class = "form-control u-shadow-v19 g-brd-none g-bg-white g-font-size-16 g-rounded-30 g-px-30 g-py-13 g-mb-30" } })
|
|
@Html.ValidationMessageFor(model => model.Name, "", new { @class = "form-control-feedback d-block g-bg-red g-color-white g-font-size-12 g-px-14 g-py-3 mt-0" })
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="col-md-offset-2 col-md-10">
|
|
<input type="submit" value="Create" class="btn btn-default" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
<div>
|
|
@Html.ActionLink("Back to List", "Index")
|
|
</div>
|