24 lines
759 B
Plaintext
24 lines
759 B
Plaintext
<div id="c-users">
|
|
<div id="a-new">
|
|
<h1>Sign Up</h1>
|
|
|
|
<p>A basic account is <strong>free</strong> and lets you keep favorites, upload artwork, and write comments. If you want <%= link_to "more features", wiki_pages_path(:title => "help:accounts") %> you can upgrade your account later.</p>
|
|
|
|
<div id="p3">
|
|
<%= simple_form_for(@user) do |f| %>
|
|
<%= f.input :name, :as => :string %>
|
|
<%= f.input :email, :required => false, :as => :email %>
|
|
<%= f.input :password %>
|
|
<%= f.input :password_confirmation %>
|
|
<%= f.button :submit, "Sign up" %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "secondary_links" %>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Sign up - <%= Danbooru.config.app_name %>
|
|
<% end %>
|