@model Church.Net.Entity.NewVisitor @{ Layout = null; } @Scripts.Render("~/bundles/jquery") @Scripts.Render("~/bundles/jqueryval") @Html.Partial("_Processing") 歡迎新朋友 @**@

新生命靈糧堂-亞凱迪亞

@using (Html.BeginForm("Registration", "NewVisitor", FormMethod.Post, new { enctype = "multipart/form-data" })) { @Html.AntiForgeryToken()

歡迎新朋友

@Html.ValidationMessageFor(c => c.LastName) @Html.TextBoxFor(c => c.LastName, new { placeholder = "請輸入您的姓氏" })

@Html.ValidationMessageFor(c => c.FirstName) @Html.TextBoxFor(c => c.FirstName, new { placeholder = "請輸入您的名字" })



@Html.RadioButtonFor(c => c.Gender, Church.Net.Entity.Enumeration.Gender.Male)@Html.Label("弟兄") @Html.RadioButtonFor(c => c.Gender, Church.Net.Entity.Enumeration.Gender.Female)@Html.Label("姊妹")

@Html.ValidationMessageFor(c => c.Phone) @Html.TextBoxFor(c => c.Phone, new { placeholder = "請輸入您的聯繫電話" })

@Html.ValidationMessageFor(c => c.Email) @Html.TextBoxFor(c => c.Email, new { placeholder = "請輸入您的聯繫Email" })

@Html.ValidationMessageFor(c => c.Note) @Html.TextBoxFor(c => c.Note, new { placeholder = "請輸入您的來訪原因" })

@Html.ValidationMessageFor(c => c.ComunityAppId) @Html.TextBoxFor(c => c.ComunityAppId, new { placeholder = "請輸入您的通信軟體 Id ex:WeChat,Line" })

@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.TextBox("AttachFile", "", new { @class = "form-control-file", type = "file", accept = "image/*;capture=camera" })

}