Skip to content

Commit

Permalink
Updated env variables and emails
Browse files Browse the repository at this point in the history
  • Loading branch information
vmatsiiako committed Feb 10, 2023
1 parent 6ab6147 commit eebde3a
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
3 changes: 1 addition & 2 deletions backend/src/templates/emailVerification.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
<title>Email Verification</title>
</head>
<body>
<h2>Infisical</h2>
<h2>Confirm your email address</h2>
<p>Your confirmation code is below — enter it in the browser window where you've started signing up for Infisical.</p>
<h2>{{code}}</h2>
<h1>{{code}}</h1>
<p>Questions about setting up Infisical? Email us at [email protected]</p>
</body>
</html>
3 changes: 1 addition & 2 deletions backend/src/templates/organizationInvitation.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
<title>Organization Invitation</title>
</head>
<body>
<h2>Infisical</h2>
<h2>Join your team on Infisical</h2>
<h2>Join your organization on Infisical</h2>
<p>{{inviterFirstName}}({{inviterEmail}}) has invited you to their Infisical organization — {{organizationName}}</p>
<a href="{{callback_url}}?token={{token}}&to={{email}}">Join now</a>
<h3>What is Infisical?</h3>
Expand Down
1 change: 0 additions & 1 deletion backend/src/templates/passwordReset.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<title>Account Recovery</title>
</head>
<body>
<h2>Infisical</h2>
<h2>Reset your password</h2>
<p>Someone requested a password reset.</p>
<a href="{{callback_url}}?token={{token}}&to={{email}}">Reset password</a>
Expand Down
1 change: 0 additions & 1 deletion backend/src/templates/workspaceInvitation.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<title>Project Invitation</title>
</head>
<body>
<h2>Infisical</h2>
<h2>Join your team on Infisical</h2>
<p>{{inviterFirstName}}({{inviterEmail}}) has invited you to their Infisical project — {{workspaceName}}</p>
<a href="{{callback_url}}">Join now</a>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/utilities/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const POSTHOG_HOST =
process.env.NEXT_PUBLIC_POSTHOG_HOST! || "https://app.posthog.com";
const STRIPE_PRODUCT_PRO = process.env.NEXT_PUBLIC_STRIPE_PRODUCT_PRO!;
const STRIPE_PRODUCT_STARTER = process.env.NEXT_PUBLIC_STRIPE_PRODUCT_STARTER!;
const {SITE_URL} = process.env
const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL!;

export {
ENV,
Expand Down

0 comments on commit eebde3a

Please sign in to comment.