-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Haarhoff
committed
Nov 16, 2024
1 parent
c8b5b1c
commit 200269f
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
import {html} from '../../types/html'; | ||
import {html, safe} from '../../types/html'; | ||
|
||
type ViewModel = { | ||
memberNumber: number; | ||
}; | ||
|
||
const infoSystemsGroupEmailAddress = safe('[email protected]'); | ||
|
||
export const render = (viewModel: ViewModel) => html` | ||
<div class="stack"> | ||
<h1>Raise an issue</h1> | ||
<h2>If your records are wrong</h2> | ||
<p> | ||
Send the app team an email: | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
Send the app and records team an email: | ||
<a href="mailto:${infoSystemsGroupEmailAddress}" | ||
>${infoSystemsGroupEmailAddress}</a | ||
> | ||
</p> | ||
<p> | ||
Please include your member number (${viewModel.memberNumber}) in the | ||
email. | ||
</p> | ||
<p> | ||
This will reach the members buildings this app as well as part of the | ||
management team that maintains our records. | ||
</p> | ||
</div> | ||
`; |