Ability to create project with namespace
This commit is contained in:
parent
96105e214f
commit
2b683b0d0b
10 changed files with 62 additions and 6 deletions
|
@ -8,6 +8,7 @@
|
|||
= link_to authbutton(provider, 32), omniauth_authorize_path(User, provider)
|
||||
|
||||
|
||||
|
||||
%fieldset
|
||||
%legend
|
||||
Private token
|
||||
|
@ -44,11 +45,25 @@
|
|||
.input= f.password_field :password
|
||||
.clearfix
|
||||
= f.label :password_confirmation
|
||||
.input= f.password_field :password_confirmation
|
||||
.actions
|
||||
= f.submit 'Save', class: "btn save-btn"
|
||||
.input
|
||||
= f.password_field :password_confirmation
|
||||
.clearfix
|
||||
.input
|
||||
= f.submit 'Save password', class: "btn save-btn"
|
||||
|
||||
|
||||
|
||||
%fieldset
|
||||
%legend
|
||||
Username
|
||||
%small.right
|
||||
Changing your username can have unintended side effects!
|
||||
= form_for @user, url: profile_update_path, method: :put do |f|
|
||||
.padded
|
||||
= f.label :username
|
||||
.input
|
||||
= f.text_field :username
|
||||
.input
|
||||
= f.submit 'Save username', class: "btn save-btn"
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue