Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ContactUs.cshtml

@model ContactUsModel
@{
    Layout = "_ColumnsOne";

    //title
    NopHtml.AddTitleParts(T("PageTitle.ContactUs").Text);
    //page class
    NopHtml.AppendPageCssClassParts("html-contact-page");
}

@T("PageTitle.ContactUs")

@await Component.InvokeAsync(typeof(TopicBlockViewComponent), new { systemName = "ContactUs" }) @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ContactUsTop, additionalData = Model }) @if (Model.SuccessfullySent) {
@Model.Result
} else {
@if (Model.SubjectEnabled) {
}
@if (Model.DisplayCaptcha) { }
} @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ContactUsBottom, additionalData = Model })