cannery/lib/cannery_web/templates/email/confirm_email.html.eex

26 lines
703 B
Elixir
Raw Normal View History

2022-02-17 22:47:54 -05:00
<div style="display: flex; flex-direction: column; justify-content: center; align-items: center;">
<span style="margin-bottom: 0.75em; font-size: 1.5em;">
<%= dgettext("emails", "Hi %{email},", email: @user.email) %>
</span>
2022-02-08 19:59:23 -05:00
2022-02-17 22:47:54 -05:00
<br/>
2022-02-08 19:59:23 -05:00
2022-02-17 22:47:54 -05:00
<span style="margin-bottom: 1em; font-size: 1.25em;">
<%= dgettext("emails", "Welcome to %{name}!", name: "Cannery") %>
</span>
2022-02-08 19:59:23 -05:00
2022-02-17 22:47:54 -05:00
<br/>
2022-02-08 19:59:23 -05:00
2022-02-17 22:47:54 -05:00
<%= dgettext("emails", "You can confirm your account by visiting the URL below:") %>
2022-02-08 19:59:23 -05:00
2022-02-17 22:47:54 -05:00
<br/>
<a style="margin: 1em; color: rgb(31, 31, 31);" href="{@url}"><%= @url %></a>
<br/>
<%= dgettext("emails",
"If you didn't create an account at %{name}, please ignore this.",
name: "Cannery") %>
</div>