From fc198a8b4ca6d22eaedee2cfb03e088432dc4b30 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 3 Oct 2016 16:38:22 +0200 Subject: Adding e-mail confirmations --- app/views/auth/mailer/confirmation_instructions.html.erb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/views/auth/mailer/confirmation_instructions.html.erb (limited to 'app/views/auth/mailer') diff --git a/app/views/auth/mailer/confirmation_instructions.html.erb b/app/views/auth/mailer/confirmation_instructions.html.erb new file mode 100644 index 000000000..ef17b288f --- /dev/null +++ b/app/views/auth/mailer/confirmation_instructions.html.erb @@ -0,0 +1,5 @@ +

Welcome <%= @resource.email %>!

+ +

You can confirm your account email through the link below:

+ +

<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %>

-- cgit