-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support user invites for multiple participants
- Allow for existing user to be added to a brand new participant - Allow for existing user to be added to an existing participant - New email template for existing user being invited
- Loading branch information
1 parent
5b776c4
commit 490f8db
Showing
4 changed files
with
183 additions
and
87 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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<html> | ||
<head> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<style type="text/css"> | ||
body { | ||
padding: 70px; | ||
text-align: center; | ||
font-family: 'Inter', sans-serif; | ||
font-size: 18px; | ||
color: #000000; | ||
background-color: #fff; | ||
} | ||
.logo { | ||
height: 30px; | ||
} | ||
.content { | ||
margin-top: 50px; | ||
width: 500px; | ||
display: inline-block; | ||
color: #030a40; | ||
} | ||
.button { | ||
border-radius: 5px; | ||
font-weight: 600; | ||
font-size: 18px; | ||
padding: 11px 42px; | ||
background-color: #cdf200; | ||
color: #030a40 !important; | ||
text-decoration: none; | ||
} | ||
.content-text { | ||
text-align: left; | ||
font-size: 18px; | ||
} | ||
.footer { | ||
margin: 50px 0 20px; | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div> | ||
<a href="{{baseUrl}}"><img src="{{baseUrl}}/uid2-logo.png" alt="UID2 logo" class="logo" /></a> | ||
</div> | ||
|
||
<div class="content"> | ||
<p class="content-text"> | ||
Hi {{firstName}},<br /><br /> | ||
You've been invited to join {{participantName}} in the UID2 Portal.<br /><br /> | ||
To get started, simply log in using the button below. | ||
</p> | ||
<div class="footer"> | ||
<a href="{{link}}" class="button">Log In</a> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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
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
Oops, something went wrong.