ProjectLighthouse/ProjectLighthouse.Servers.Website/Pages/Partials/ErrorModalPartial.cshtml
Josh 65f317d9bd
Improve website tests (#842)
* Improve website tests

* Use DefaultLang instead of hard coding English
2023-08-03 20:09:32 -05:00

8 lines
No EOL
214 B
Text

@model (string Title, string Message)
<div class="ui negative message" id="error-message">
<div class="header">
@Model.Title
</div>
<p style="white-space: pre-line">@Model.Message</p>
</div>