Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created January 19, 2020 18:47
Show Gist options
  • Save kasunkv/7b8307231b217e6c49d0d37489e75687 to your computer and use it in GitHub Desktop.
Save kasunkv/7b8307231b217e6c49d0d37489e75687 to your computer and use it in GitHub Desktop.
View for the disabled feature navigation
@model DisabledFeatureViewModel
@{
ViewData["Title"] = "Feature Disabled";
}
<div class="text-center">
<div class="row">
<img class="col-md-8 offset-2 img-fluid" src="~/img/feature_disabled.png" alt="feature disavled" />
</div>
<div class="text-center">
<p class="lead "><b>@Model.FeatureName</b> feature you are trying to access is disabled. Planned date for @Model.FeatureName feature to come online is on <b>@Model.GoLiveDate.ToLocalTime()</b>.</p>
<p class="lead text-center">For additional information contact us at <a href="#">[email protected]</a></p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment