Skip to content

Commit

Permalink
Pick an email address #76
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Haarhoff committed Nov 16, 2024
1 parent c8b5b1c commit 200269f
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/queries/raise-issue/render.ts
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>
`;

0 comments on commit 200269f

Please sign in to comment.