Show More
Commit Description:
fig bugs in login report
Commit Description:
fig bugs in login report
References:
File last commit:
Show/Diff file:
Action:
app/views/user_admin/_form.html.haml
| 12 lines
| 352 B
| text/x-haml
| HamlLexer
|
r752 | = simple_form_for(@user) do |f| | |||
= f.error_notification | ||||
r759 | = f.input :login, label: 'Login' | |||
= f.input :full_name, label: 'Full name' | ||||
= f.input :password | ||||
= f.input :password_confirmation | ||||
= f.input :email | ||||
= f.input :alias | ||||
= f.input :remark | ||||
= f.button :submit, class: 'btn btn-primary' | ||||
= link_to 'Cancel', :back, class: 'btn btn-default' | ||||
r752 | ||||