Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

messages:chore - new link for horusec logo on email templates #448

Merged
merged 1 commit into from
Nov 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/horusec-logo-vertical.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion messages/internal/enums/templates/email_confirmation.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

package templates

//nolint:lll // not necessary check lint on text content
const EmailConfirmationTpl = `<!doctype html>
<html>
<head>
Expand Down Expand Up @@ -261,7 +262,7 @@ const EmailConfirmationTpl = `<!doctype html>
<tr>
<td>
<p class="align-center logo-wrapper">
<img width="150px" src="https://horusec.io/public/email_logo.png">
<img width="150px" src="https://github.com/ZupIT/horusec-platform/blob/main/assets/horusec-logo-vertical.png?raw=true">
</p>
<h1 class="align-left">Hello, {{.Username}}!</h1>
<p>To start using Horusec, confirm your email.</p>
Expand Down
3 changes: 2 additions & 1 deletion messages/internal/enums/templates/organization_invite.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

package templates

//nolint:lll // not necessary check lint on text content
const OrganizationInviteTpl = `<!doctype html>
<html>
<head>
Expand Down Expand Up @@ -259,7 +260,7 @@ const OrganizationInviteTpl = `<!doctype html>
<tr>
<td>
<p class="align-center logo-wrapper">
<img width="150px" src="https://horusec.io/public/email_logo.png">
<img width="150px" src="https://github.com/ZupIT/horusec-platform/blob/main/assets/horusec-logo-vertical.png?raw=true">
</p>
<h1 class="align-left">Hello, {{.Username}}!</h1>
<p>You have been invited to join the workspace {{.CompanyName}}.</p>
Expand Down
4 changes: 2 additions & 2 deletions messages/internal/enums/templates/reset_password.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package templates

//nolint:gosec //false positive
// nolint // not necessary check lint on text content
const ResetPasswordTpl = `<!doctype html>
<html>
<head>
Expand Down Expand Up @@ -269,7 +269,7 @@ const ResetPasswordTpl = `<!doctype html>
<tr>
<td>
<p class="align-center logo-wrapper">
<img width="150px" src="https://horusec.io/public/email_logo.png">
<img width="150px" src="https://github.com/ZupIT/horusec-platform/blob/main/assets/horusec-logo-vertical.png?raw=true">
</p>
<h1 class="align-left">Hello, {{.Username}}!</h1>
<p>You have requested a password reset to access HORUSEC. The code is valid for 10 minutes
Expand Down