21 lines
598 B
Plaintext
21 lines
598 B
Plaintext
<div id="c-user-upgrades">
|
|
<div id="a-show">
|
|
<% if flash[:success] %>
|
|
<h1>Congratulations!</h1>
|
|
|
|
<p>You are now a <%= CurrentUser.user.level_string %> level account. Thanks for supporting the site!</p>
|
|
<p><%= link_to "Return to posts", posts_path %> </p>
|
|
<% elsif flash[:error] %>
|
|
<h1>An error occurred!</h1>
|
|
<p><%= flash[:error] %></p>
|
|
<p><%= link_to "Try again", new_user_upgrade_path %></p>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "users/secondary_links" %>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Upgrade - <%= Danbooru.config.app_name %>
|
|
<% end %>
|