Skip to content
Snippets Groups Projects
Commit f0d32246 authored by pabois's avatar pabois
Browse files

gem

parent ae203983
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@ gem 'devise'
gem 'devise-i18n'
gem 'cancancan'
gem 'simple_form'
gem 'simple_form_password_with_hints'
gem 'enum_help'
gem 'enum-i18n'
gem 'country_select'
......
......@@ -314,6 +314,9 @@ GEM
simple_form (5.1.0)
actionpack (>= 5.2)
activemodel (>= 5.2)
simple_form_password_with_hints (0.0.2)
rails
simple_form
sinatra (2.1.0)
mustermann (~> 1.0)
rack (~> 2.2)
......@@ -395,6 +398,7 @@ DEPENDENCIES
sib-api-v3-sdk
simple-navigation
simple_form
simple_form_password_with_hints
spring
two_factor_authentication!
tzinfo-data
......@@ -405,4 +409,4 @@ RUBY VERSION
ruby 2.7.4p191
BUNDLED WITH
2.2.24
2.2.27
//= require jquery3
//= require jquery_ujs
//= require appstack/app
//= require simple_form_password_with_hints
@import 'appstack/light'
@import 'simple_form_password_with_hints'
@import 'admin/*'
......@@ -7,6 +7,8 @@
autofocus: true,
input_html: { autocomplete: "email" } %>
<%= f.input :password,
as: :password_with_hints,
allow_password_uncloaking: true,
required: false,
input_html: { autocomplete: "current-password" } %>
<%= f.input :remember_me, as: :boolean if devise_mapping.rememberable? %>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment