• Spell Quest
@*
*@

General Queries:

If you have some feedback or want to ask any question

@using (Html.BeginForm()) {
@Html.AntiForgeryToken() @Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.FirstName, new { htmlAttributes = new { @class = "form-control", placeholder = "Full Name" } }) @Html.ValidationMessageFor(model => model.FirstName, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.LastName, new { htmlAttributes = new { @class = "form-control", placeholder = "Last Name" } }) @Html.ValidationMessageFor(model => model.LastName, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.EmailId, new { htmlAttributes = new { @class = "form-control", placeholder = "Email Id" } }) @Html.ValidationMessageFor(model => model.EmailId, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.PhoneNo, new { htmlAttributes = new { @class = "form-control", type = "number", placeholder = "Contact No." } }) @Html.ValidationMessageFor(model => model.PhoneNo, "", new { @class = "text-danger" })
@Html.TextAreaFor(model => model.Query, new { @class = "form-control", rows = "4", cols = "50", placeholder = "Message" }) @Html.ValidationMessageFor(model => model.Query, "", new { @class = "text-danger" })
}

info@spellquest.in

9702 620 933

Our headquarters

352, Powai Plaza,
Hiranandani Garden, Powai,
Mumbai-40076.

@section scripts{ }