18 lines
409 B
Plaintext
18 lines
409 B
Plaintext
<% provide(:title, 'Signup Confirmation') %>
|
|
|
|
<% if @user.nil? %>
|
|
<h1>Signup Already Confirmed</h1>
|
|
|
|
<br/>
|
|
<br/>
|
|
<p>
|
|
If you are seeing this page, you have probably already confirmed this email address.
|
|
</p>
|
|
<br/>
|
|
<p>
|
|
Please proceed to <%= link_to 'the home page', root_path %> and log in.
|
|
</p>
|
|
<% else %>
|
|
The server had a problem. Please try to confirm your email later.
|
|
<% end %>
|