109 lines
7.0 KiB
Plaintext
109 lines
7.0 KiB
Plaintext
@model Church.Net.Entity.NewVisitor
|
|
|
|
@{
|
|
ViewBag.Title = "Edit";
|
|
}
|
|
<div class="text-center g-mb-50--md">
|
|
<h2 class="h4 g-mb-0">Edit <span class="g-color-primary g-ml-5">NewVisitor</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">
|
|
<div class="col-xl-4 g-mb-30 order-md-1">
|
|
|
|
<img src="/NewVisitorsPics/@Html.Raw(Model.Id+".jpg")" class="img-fluid img-thumbnail" />
|
|
</div>
|
|
<div class="col-xl-8 g-mb-30 order-md-0">
|
|
|
|
<div class="row">
|
|
<div class="col-md-6 g-mb-20--md">
|
|
|
|
@Html.LabelFor(model => model.FirstName, htmlAttributes: new { @class = "g-font-weight-500 g-font-size-15 g-pl-30" })
|
|
@Html.EditorFor(model => model.FirstName, 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", placeholder = "" } })
|
|
@Html.ValidationMessageFor(model => model.FirstName, "", new { @class = "text-danger" })
|
|
</div>
|
|
<div class="col-md-6 g-mb-20--md">
|
|
|
|
|
|
@Html.LabelFor(model => model.LastName, htmlAttributes: new { @class = "g-font-weight-500 g-font-size-15 g-pl-30" })
|
|
@Html.EditorFor(model => model.LastName, 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", placeholder = "" } })
|
|
@Html.ValidationMessageFor(model => model.LastName, "", new { @class = "text-danger" })
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6 g-mb-20--md">
|
|
|
|
@Html.LabelFor(model => model.Gender, htmlAttributes: new { @class = "g-font-weight-500 g-font-size-15 g-pl-30" })
|
|
@Html.EnumDropDownListFor(model => model.Gender, htmlAttributes: new { @class = "w-100 u-select-v2 u-shadow-v19 g-brd-none g-color-black g-color-primary--hover g-bg-white text-left g-rounded-30 g-pl-30 g-py-12" })
|
|
@Html.ValidationMessageFor(model => model.Gender, "", new { @class = "text-danger" })
|
|
</div>
|
|
<div class="col-md-6 g-mb-20--md">
|
|
|
|
|
|
@Html.LabelFor(model => model.Phone, htmlAttributes: new { @class = "g-font-weight-500 g-font-size-15 g-pl-30" })
|
|
@Html.EditorFor(model => model.Phone, 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", placeholder = "" } })
|
|
@Html.ValidationMessageFor(model => model.Phone, "", new { @class = "text-danger" })
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6 g-mb-20--md">
|
|
@Html.LabelFor(model => model.ComunityAppId, htmlAttributes: new { @class = "g-font-weight-500 g-font-size-15 g-pl-30" })
|
|
@Html.EditorFor(model => model.ComunityAppId, 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", placeholder = "" } })
|
|
@Html.ValidationMessageFor(model => model.ComunityAppId, "", new { @class = "text-danger" })
|
|
</div>
|
|
<div class="col-md-6 g-mb-20--md">
|
|
|
|
|
|
@Html.LabelFor(model => model.VisitingDate, htmlAttributes: new { @class = "g-font-weight-500 g-font-size-15 g-pl-30" })
|
|
@Html.EditorFor(model => model.VisitingDate, 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", placeholder = "" } })
|
|
@Html.ValidationMessageFor(model => model.VisitingDate, "", new { @class = "text-danger" })
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
|
|
<div class="col-md-6 g-mb-20--md">
|
|
@Html.LabelFor(model => model.ReligionId, "ReligionId", htmlAttributes: new { @class = "g-font-weight-500 g-font-size-15 g-pl-30" })
|
|
|
|
@Html.DropDownList("ReligionId", null, htmlAttributes: new { @class = "w-100 u-select-v2 u-shadow-v19 g-brd-none g-color-black g-color-primary--hover g-bg-white text-left g-rounded-30 g-pl-30 g-py-12" })
|
|
@Html.ValidationMessageFor(model => model.ReligionId, "", new { @class = "form-control-feedback g-bg-red g-color-white g-font-size-12 g-px-14 g-py-3 mt-0" })
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6 g-mb-20--md">
|
|
@Html.LabelFor(model => model.Note, htmlAttributes: new { @class = "g-font-weight-500 g-font-size-15 g-pl-30" })
|
|
@Html.EditorFor(model => model.Note, 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", placeholder = "" } })
|
|
@Html.ValidationMessageFor(model => model.Note, "", new { @class = "text-danger" })
|
|
|
|
</div>
|
|
</div>
|
|
<div class="g-mb-20--md">
|
|
|
|
|
|
@Html.LabelFor(model => model.Address, htmlAttributes: new { @class = "g-font-weight-500 g-font-size-15 g-pl-30" })
|
|
@Html.EditorFor(model => model.Address, 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", placeholder = "" } })
|
|
@Html.ValidationMessageFor(model => model.Address, "", new { @class = "text-danger" })
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-6 g-mt-30 g-mb-30">
|
|
<div class="d-flex">
|
|
<button class="btn btn-block u-shadow-v32 g-brd-black g-brd-2 g-color-black g-color-white--hover g-bg-transparent g-bg-black--hover g-font-size-16 g-rounded-30 g-py-10 mr-2 g-mt-0" type="reset">Reset</button>
|
|
<button class="btn btn-block u-shadow-v32 g-brd-none g-color-white g-bg-black g-bg-primary--hover g-font-size-16 g-rounded-30 g-py-10 ml-2 g-mt-0" type="submit">Update</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
}
|