26 lines
593 B
Plaintext
26 lines
593 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 %>
|
|
<h1>Email Confirmed</h1>
|
|
<br/>
|
|
<br/>
|
|
<p>
|
|
You have successfully confirmed this email address.
|
|
</p>
|
|
<br/>
|
|
<p>
|
|
You can proceed to the website <%= link_to 'home page', root_path %> and sign in, or close this page in your browser.
|
|
</p>
|
|
<% end %>
|