alpha-version-dce-check-in-api
Version:
API for taking attendance and checking people in.
32 lines (28 loc) • 733 B
text/typescript
/**
* The body of the HTML for the CheckInPage.
* @author Benedikt Arnarsson
*/
const HTML = `
<body class="bg-success">
<div class="outer-container">
<div class="container">
<h2> Welcome, <span class="fw-bold"><%= userFirstName %></span>! </h2>
<div
class="PopSuccessMark-outer-container bg-white"
aria-label="checkmark indicating success"
>
<div
class="PopSuccessMark-check-stroke-1 bg-success"
></div>
<div
class="PopSuccessMark-check-stroke-2 bg-success"
></div>
</div>
<% if (groupNum !== undefined) { %>
<h2> Group <%= groupNum %> </h2>
<% } %>
</div>
</div>
</body>
`;
export default HTML;