diff options
author | azul <azul@riseup.net> | 2014-04-25 12:10:48 +0200 |
---|---|---|
committer | azul <azul@riseup.net> | 2014-04-25 12:10:48 +0200 |
commit | 2b6200f508ddb8e1c8a76fd3778881c39d787d8d (patch) | |
tree | 7f8fd9a78b619bf886bd3b985369c21260c8ea0a /app/views/users | |
parent | 14b43488b968a1544fdb65caa4fb0df99606c3ff (diff) | |
parent | 1da12752c3b3aa3d4a03e67ede133e807e9434df (diff) |
Merge pull request #151 from azul/bugfix/5549-prefer-client-signup
Bugfix/5549 prefer client signup
Diffstat (limited to 'app/views/users')
-rw-r--r-- | app/views/users/new.html.haml | 2 | ||||
-rw-r--r-- | app/views/users/show.html.haml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/users/new.html.haml b/app/views/users/new.html.haml index aecf831..173dd8c 100644 --- a/app/views/users/new.html.haml +++ b/app/views/users/new.html.haml @@ -8,8 +8,8 @@ .span9 = render :partial => 'warnings' %h2=t :signup + .lead=t :signup_info = simple_form_for(@user, form_options) do |f| - %legend= t(:signup_message) = f.input :login, :label => t(:username), :required => false, :input_html => { :id => :srp_username } = f.input :password, :required => false, :validate => true, :input_html => { :id => :srp_password } = f.input :password_confirmation, :required => false, :validate => true, :input_html => { :id => :srp_password_confirmation } diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml index c587017..3c73147 100644 --- a/app/views/users/show.html.haml +++ b/app/views/users/show.html.haml @@ -22,4 +22,4 @@ %li= icon('shopping-cart') + link_to(t(:overview_billing), billing_top_link(@user)) if APP_CONFIG[:billing] .container-fluid .row-fluid - = home_page_buttons(true)
\ No newline at end of file + = render 'common/download_button' |