inviteExistingUser.hbs•1.12 kB
<!DOCTYPE html>
<html>
<head>
<title>Invite</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
padding: 20px;
}
.container {
background: #fff;
padding: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
line-height: 20px;
background: linear-gradient(323deg, #008751 30.56%, #3ae19e 118.19%);
color: white !important;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
text-align: center;
border: none;
cursor: pointer;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #181818;
color: #f4f4f4;
}
.container {
background: #181818;
}
}
</style>
</head>
<body>
<div class="container">
<p>You have been invited to join the workspace <b>{{workspaceName}}</b> on Fonoster.</p>
<p>To accept the invitation, please use the button below:</p>
<a href="{{inviteUrl}}" class="button">Join Workspace</a>
</div>
</body>
</html>