Created
January 19, 2020 18:47
-
-
Save kasunkv/7b8307231b217e6c49d0d37489e75687 to your computer and use it in GitHub Desktop.
View for the disabled feature navigation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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