7754189187
Didn't bother with files in db/, config/, or features/
24 lines
695 B
Plaintext
24 lines
695 B
Plaintext
%h3.page_title
|
|
Private token
|
|
%span.cred.right
|
|
keep it in secret!
|
|
%hr
|
|
= form_for @user, url: profile_reset_private_token_path, method: :put do |f|
|
|
.data
|
|
%p.slead
|
|
Private token used to access application resources without authentication.
|
|
%br
|
|
It can be used for atom feed or API
|
|
%p.cgray
|
|
- if current_user.private_token
|
|
= text_field_tag "token", current_user.private_token, class: "xxlarge large_text"
|
|
- else
|
|
You don`t have one yet. Click generate to fix it.
|
|
.actions
|
|
- if current_user.private_token
|
|
= f.submit 'Reset', confirm: "Are you sure?", class: "btn"
|
|
- else
|
|
= f.submit 'Generate', class: "btn primary"
|
|
|
|
|