cybele 1.9.2 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.fasterer.yml +5 -0
- data/.flayignore +3 -0
- data/.gitignore +4 -1
- data/.haml-lint.yml +5 -0
- data/.poper.yml +7 -0
- data/.rubocop.yml +59 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +458 -2
- data/Gemfile +2 -0
- data/README.md +16 -20
- data/Rakefile +1 -1
- data/USAGE +12 -0
- data/bin/build_app +18 -0
- data/bin/build_gem +20 -0
- data/bin/cybele +21 -6
- data/config.reek +29 -0
- data/cybele.gemspec +14 -6
- data/example.pronto.yml +8 -0
- data/lib/cybele.rb +33 -0
- data/lib/cybele/app_builder.rb +43 -510
- data/lib/cybele/generators/app_generator.rb +240 -180
- data/lib/cybele/helpers.rb +104 -0
- data/lib/cybele/helpers/app_files/assets_files.rb +43 -0
- data/lib/cybele/helpers/app_files/controller_files.rb +23 -0
- data/lib/cybele/helpers/app_files/helper_files.rb +15 -0
- data/lib/cybele/helpers/app_files/mailer_files.rb +15 -0
- data/lib/cybele/helpers/app_files/model_files.rb +16 -0
- data/lib/cybele/helpers/app_files/vendor_files.rb +14 -0
- data/lib/cybele/helpers/app_files/view_files.rb +62 -0
- data/lib/cybele/helpers/app_files/view_gems.rb +20 -0
- data/lib/cybele/helpers/audited.rb +12 -0
- data/lib/cybele/helpers/basic_authentication.rb +44 -0
- data/lib/cybele/helpers/devise.rb +67 -0
- data/lib/cybele/helpers/docker.rb +53 -0
- data/lib/cybele/helpers/dotenv.rb +23 -0
- data/lib/cybele/helpers/error_pages.rb +37 -0
- data/lib/cybele/helpers/general.rb +87 -0
- data/lib/cybele/helpers/haml.rb +18 -0
- data/lib/cybele/helpers/locale_language.rb +23 -0
- data/lib/cybele/helpers/mailer.rb +25 -0
- data/lib/cybele/helpers/paperclip.rb +33 -0
- data/lib/cybele/helpers/pronto.rb +34 -0
- data/lib/cybele/helpers/recipient_interceptor.rb +18 -0
- data/lib/cybele/helpers/responders.rb +36 -0
- data/lib/cybele/helpers/routes.rb +18 -0
- data/lib/cybele/helpers/show_for.rb +20 -0
- data/lib/cybele/helpers/sidekiq.rb +37 -0
- data/lib/cybele/helpers/simple_form.rb +19 -0
- data/lib/cybele/helpers/staging.rb +15 -0
- data/lib/cybele/version.rb +5 -3
- data/spec/features/cli_help_spec.rb +42 -0
- data/spec/features/git_and_git_flow_spec.rb +30 -0
- data/spec/features/new_default_project_spec.rb +465 -0
- data/spec/features/new_not_default_project_spec.rb +412 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/support/config_test_helper.rb +36 -0
- data/spec/support/cybele_test_helpers.rb +115 -0
- data/spec/support/devise_test_helper.rb +45 -0
- data/spec/support/dotenv_test_helper.rb +31 -0
- data/spec/support/error_pages_test_helper.rb +24 -0
- data/spec/support/force_ssl_test_helper.rb +24 -0
- data/spec/support/git_ignore_test_helper.rb +10 -0
- data/spec/support/locale_language_test_helper.rb +43 -0
- data/spec/support/mail_test_helpers.rb +15 -0
- data/spec/support/paperclip_test_helper.rb +38 -0
- data/spec/support/pronto_test_helpers.rb +41 -0
- data/spec/support/responder_test_helper.rb +32 -0
- data/templates/Gemfile.erb +59 -0
- data/templates/README.md.erb +23 -20
- data/templates/VERSION.txt +1 -0
- data/templates/app_files/app/assets/javascripts/application.js +81 -0
- data/templates/app_files/app/assets/javascripts/hq/application.js +80 -0
- data/templates/{app/assets/stylesheets/application.css.sass → app_files/app/assets/stylesheets/application.sass} +27 -16
- data/templates/app_files/app/assets/stylesheets/hq/_sidebar.sass +89 -0
- data/templates/app_files/app/assets/stylesheets/hq/application.sass +74 -0
- data/templates/app_files/app/controllers/concerns/activatable.rb +16 -0
- data/templates/{app → app_files/app}/controllers/hq/admins_controller.rb +7 -10
- data/templates/app_files/app/controllers/hq/application_controller.rb +13 -0
- data/templates/{app → app_files/app}/controllers/hq/audits_controller.rb +3 -3
- data/templates/app_files/app/controllers/hq/dashboard_controller.rb +7 -0
- data/templates/{app → app_files/app}/controllers/hq/passwords_controller.rb +3 -2
- data/templates/app_files/app/controllers/hq/registrations_controller.rb +22 -0
- data/templates/{app → app_files/app}/controllers/hq/sessions_controller.rb +5 -4
- data/templates/{app → app_files/app}/controllers/hq/users_controller.rb +7 -10
- data/templates/app_files/app/controllers/user/application_controller.rb +18 -0
- data/templates/app_files/app/controllers/user/dashboard_controller.rb +7 -0
- data/templates/{app → app_files/app}/controllers/user/passwords_controller.rb +3 -4
- data/templates/app_files/app/controllers/user/profile_controller.rb +30 -0
- data/templates/{app → app_files/app}/controllers/user/registrations_controller.rb +7 -8
- data/templates/{app → app_files/app}/controllers/user/sessions_controller.rb +5 -6
- data/templates/app_files/app/controllers/welcome_controller.rb +9 -0
- data/templates/app_files/app/helpers/application_helper.rb.erb +61 -0
- data/templates/app_files/app/mailers/admin_mailer.rb +10 -0
- data/templates/app_files/app/mailers/application_mailer.rb +6 -0
- data/templates/app_files/app/mailers/user_mailer.rb +10 -0
- data/templates/app_files/app/models/admin.rb +42 -0
- data/templates/app_files/app/models/audit.rb +4 -0
- data/templates/app_files/app/models/concerns/password_creatable.rb +39 -0
- data/templates/app_files/app/models/user.rb +43 -0
- data/templates/app_files/app/vendor/assets/javascripts/footable.min.js +10 -0
- data/templates/{vendor → app_files/app/vendor}/assets/javascripts/jquery.datetimepicker.js +0 -0
- data/templates/{vendor → app_files/app/vendor}/assets/javascripts/jquery.maskedinput.min.js +0 -0
- data/templates/{vendor → app_files/app/vendor}/assets/javascripts/nprogress.js +0 -0
- data/templates/{vendor → app_files/app/vendor}/assets/javascripts/trix.js +0 -0
- data/templates/app_files/app/vendor/assets/stylesheets/footable.bootstrap.min.css +1 -0
- data/templates/{vendor → app_files/app/vendor}/assets/stylesheets/jquery.datetimepicker.css +0 -0
- data/templates/{vendor → app_files/app/vendor}/assets/stylesheets/nprogress.css +0 -1
- data/templates/{vendor → app_files/app/vendor}/assets/stylesheets/trix.css +0 -0
- data/templates/app_files/app/views/admin_mailer/login_info.html.haml +13 -0
- data/templates/app_files/app/views/hq/admins/_admin.html.haml +38 -0
- data/templates/{app → app_files/app}/views/hq/admins/_blank.html.haml +3 -3
- data/templates/app_files/app/views/hq/admins/_filters.html.haml +27 -0
- data/templates/app_files/app/views/hq/admins/_form.html.haml +17 -0
- data/templates/app_files/app/views/hq/admins/_list.html.haml +20 -0
- data/templates/app_files/app/views/hq/admins/edit.html.haml +3 -0
- data/templates/app_files/app/views/hq/admins/index.html.haml +18 -0
- data/templates/{app → app_files/app}/views/hq/admins/new.html.haml +2 -2
- data/templates/{app → app_files/app}/views/hq/admins/show.html.haml +8 -8
- data/templates/app_files/app/views/hq/audits/_filters.html.haml +48 -0
- data/templates/app_files/app/views/hq/audits/_list.html.haml +47 -0
- data/templates/{app → app_files/app}/views/hq/audits/index.html.haml +3 -3
- data/templates/app_files/app/views/hq/audits/show.html.haml +8 -0
- data/templates/app_files/app/views/hq/dashboard/index.html.haml +13 -0
- data/templates/app_files/app/views/hq/passwords/edit.html.haml +24 -0
- data/templates/app_files/app/views/hq/passwords/new.html.haml +21 -0
- data/templates/app_files/app/views/hq/registrations/edit.html.haml +30 -0
- data/templates/app_files/app/views/hq/sessions/new.html.haml +20 -0
- data/templates/{app → app_files/app}/views/hq/users/_blank.html.haml +3 -3
- data/templates/app_files/app/views/hq/users/_filters.html.haml +26 -0
- data/templates/app_files/app/views/hq/users/_form.html.haml +17 -0
- data/templates/app_files/app/views/hq/users/_list.html.haml +21 -0
- data/templates/app_files/app/views/hq/users/_user.html.haml +38 -0
- data/templates/app_files/app/views/hq/users/edit.html.haml +3 -0
- data/templates/app_files/app/views/hq/users/index.html.haml +18 -0
- data/templates/{app → app_files/app}/views/hq/users/new.html.haml +2 -2
- data/templates/{app → app_files/app}/views/hq/users/show.html.haml +8 -9
- data/templates/app_files/app/views/layouts/application.html.haml.erb +33 -0
- data/templates/app_files/app/views/layouts/hq/application.html.haml.erb +57 -0
- data/templates/app_files/app/views/layouts/hq/login.html.haml.erb +47 -0
- data/templates/app_files/app/views/layouts/hq/partials/_breadcrumb.html.haml +3 -0
- data/templates/app_files/app/views/layouts/hq/partials/_dock.html.haml +95 -0
- data/templates/{app/views/layouts/hq/partials/_footer.html.haml.erb → app_files/app/views/layouts/hq/partials/_footer.html.haml} +0 -0
- data/templates/app_files/app/views/layouts/hq/partials/_navbar.html.haml +35 -0
- data/templates/app_files/app/views/layouts/hq/partials/_toolbar.html.haml +3 -0
- data/templates/{app/views/layouts/hq/partials/_trackers.html.haml.erb → app_files/app/views/layouts/hq/partials/_trackers.html.haml} +0 -0
- data/templates/app_files/app/views/layouts/mailer.html.haml.erb +255 -0
- data/templates/app_files/app/views/layouts/partials/_messages.html.haml +11 -0
- data/templates/app_files/app/views/layouts/partials/_navbar.html.haml.erb +37 -0
- data/templates/{app/views/layouts/partials/_footer.html.haml.erb → app_files/app/views/layouts/partials/_warnings.html.haml} +0 -0
- data/templates/app_files/app/views/user/dashboard/index.html.haml +11 -0
- data/templates/app_files/app/views/user/passwords/edit.html.haml +18 -0
- data/templates/app_files/app/views/user/passwords/new.html.haml +18 -0
- data/templates/{app → app_files/app}/views/user/profile/_form.html.haml +5 -5
- data/templates/app_files/app/views/user/profile/edit.html.haml +3 -0
- data/templates/app_files/app/views/user/profile/show.html.haml +18 -0
- data/templates/app_files/app/views/user/registrations/edit.html.haml +30 -0
- data/templates/app_files/app/views/user/registrations/new.html.haml +33 -0
- data/templates/app_files/app/views/user/sessions/new.html.haml +15 -0
- data/templates/app_files/app/views/user_mailer/login_info.html.haml +13 -0
- data/templates/app_files/app/views/welcome/about.html.haml +3 -0
- data/templates/app_files/app/views/welcome/contact.html.haml +3 -0
- data/templates/app_files/app/views/welcome/index.html.haml.erb +19 -0
- data/templates/app_files/bootstrap_Gemfile.erb +4 -0
- data/templates/app_files/breadcrumb_Gemfile.erb +4 -0
- data/templates/app_files/jquery_Gemfile.erb +4 -0
- data/templates/{public → app_files/public}/images/favicon.png +0 -0
- data/templates/{public → app_files/public}/images/mail-logo.png +0 -0
- data/templates/basic_authentication/basic_authentication.rb +22 -0
- data/templates/basic_authentication/basic_authentication_settings.yml.erb +3 -0
- data/templates/basic_authentication/include_module.erb +2 -0
- data/templates/basic_authentication/no_basic_authentication.erb +2 -0
- data/templates/basic_authentication/yes_basic_authentication.erb +2 -0
- data/templates/bullet/bullet_settings.rb.erb +9 -0
- data/templates/config/config_application.rb.erb +4 -0
- data/templates/config/locales/devise.en.yml +99 -0
- data/templates/config/locales/devise.tr.yml +97 -0
- data/templates/config/locales/en.yml +34 -0
- data/templates/config/locales/mailer.en.yml +32 -0
- data/templates/config/locales/{email.tr.yml → mailer.tr.yml} +6 -2
- data/templates/config/locales/models.en.yml +74 -0
- data/templates/config/locales/models.tr.yml +11 -27
- data/templates/config/locales/responders.en.yml +15 -0
- data/templates/config/locales/responders.tr.yml +3 -2
- data/templates/config/locales/show_for.tr.yml +3 -3
- data/templates/config/locales/view.en.yml +73 -0
- data/templates/config/locales/view.tr.yml +55 -82
- data/templates/config/routes.rb.erb +63 -0
- data/templates/cybele_gitignore +4 -3
- data/templates/devise/devise_authenticate_admin.rb.erb +2 -0
- data/templates/devise/devise_before_action_strong_parameter.rb.erb +3 -0
- data/templates/devise/devise_mailer.rb.erb +1 -0
- data/templates/devise/devise_strong_parameter.rb.erb +13 -0
- data/templates/{app/views/devise → devise/devise_views}/confirmations/new.html.haml +4 -1
- data/templates/devise/devise_views/mailer/confirmation_instructions.html.haml +5 -0
- data/templates/devise/devise_views/mailer/reset_password_instructions.html.haml +7 -0
- data/templates/{app/views/devise → devise/devise_views}/mailer/unlock_instructions.html.haml +1 -1
- data/templates/devise/devise_views/passwords/edit.html.haml +19 -0
- data/templates/devise/devise_views/passwords/new.html.haml +14 -0
- data/templates/devise/devise_views/registrations/edit.html.haml +21 -0
- data/templates/devise/devise_views/registrations/new.html.haml +32 -0
- data/templates/{app/views/devise → devise/devise_views}/sessions/new.html.haml +8 -3
- data/templates/devise/devise_views/shared/_links.haml +29 -0
- data/templates/{app/views/devise → devise/devise_views}/unlocks/new.html.haml +4 -1
- data/templates/devise/seeds.rb.erb +1 -0
- data/templates/docker/Dockerfile.erb +48 -0
- data/templates/docker/docker-compose.yml.erb +46 -0
- data/templates/docker/docker_env_local_sample.erb +6 -0
- data/templates/docker/docker_env_local_sample_host.erb +1 -0
- data/templates/docker/docker_env_local_sample_sidekiq.erb +2 -0
- data/templates/docker/docker_env_staging_production_sidekiq.erb +2 -0
- data/templates/docker/start-app.sh.erb +7 -0
- data/templates/docker/start-sidekiq.sh.erb +27 -0
- data/templates/dotenv/.env.local.erb +5 -0
- data/templates/dotenv/.env.production.erb +5 -0
- data/templates/dotenv/.env.sample.erb +5 -0
- data/templates/dotenv/.env.staging.erb +5 -0
- data/templates/dotenv/dotenv_Gemfile.erb +2 -0
- data/templates/error_pages/error_control.erb +7 -0
- data/templates/error_pages/error_method.erb +10 -0
- data/templates/error_pages/error_route.erb.rb +2 -0
- data/templates/error_pages/internal_server_error.html.haml +2 -0
- data/templates/error_pages/not_found.html.haml +2 -0
- data/templates/guardfile/guardfile_settings.rb.erb +49 -0
- data/templates/haml/haml_Gemfile.erb +5 -0
- data/templates/mailer/.env.local.erb +7 -0
- data/templates/mailer/host.rb.erb +2 -0
- data/templates/mailer/mailer_settings.yml.erb +8 -0
- data/templates/mailer/smtp.rb.erb +10 -0
- data/templates/paperclip/paperclip.rb.erb +11 -0
- data/templates/paperclip/paperclip_Gemfile.erb +4 -0
- data/templates/paperclip/paperclip_env_local.erb +6 -0
- data/templates/paperclip/paperclip_env_production.erb +6 -0
- data/templates/paperclip/paperclip_env_sample.erb +6 -0
- data/templates/paperclip/paperclip_env_staging.erb +6 -0
- data/templates/paperclip/paperclip_settings.yml.erb +10 -0
- data/templates/postgresql_database.yml.erb +24 -0
- data/templates/pronto/.flayignore.erb +5 -0
- data/templates/pronto/.haml-lint.yml.erb +5 -0
- data/templates/pronto/.rubocop.yml.erb +38 -0
- data/templates/pronto/config.reek.erb +42 -0
- data/templates/pronto/example.pronto.yml.erb +27 -0
- data/templates/pronto/rubo.erb +24 -0
- data/templates/recipient_interceptor/recipient_interceptor_settings.yml.erb +4 -0
- data/templates/recipient_interceptor/recipient_interceptor_staging.rb.erb +2 -0
- data/templates/responders/responders_Gemfile.erb +3 -0
- data/templates/ruby-version +1 -1
- data/templates/secrets.yml.erb +3 -0
- data/templates/settings.yml.erb +1 -0
- data/templates/show_for/show_for_Gemfile.erb +3 -0
- data/templates/sidekiq/sidekiq.rake.erb +42 -0
- data/templates/sidekiq/sidekiq.rb.erb +18 -0
- data/templates/sidekiq/sidekiq.yml.erb +18 -0
- data/templates/sidekiq/sidekiq_Gemfile.erb +8 -0
- data/templates/{Procfile.erb → sidekiq/sidekiq_Procfile.erb} +0 -0
- data/templates/sidekiq/sidekiq_application.rb.erb +3 -0
- data/templates/sidekiq/sidekiq_routes_mount.erb +8 -0
- data/templates/sidekiq/sidekiq_routes_require.erb +3 -0
- data/templates/{config/schedule.yml → sidekiq/sidekiq_schedule.yml.erb} +6 -4
- data/templates/simple_form/simple_form_Gemfile.erb +3 -0
- data/templates/ssl/ssl_env_all.erb +2 -0
- metadata +369 -179
- data/templates/.env.local.erb +0 -11
- data/templates/.env.production.erb +0 -11
- data/templates/.env.staging.erb +0 -11
- data/templates/app/assets/javascripts/application.js.coffee +0 -81
- data/templates/app/assets/javascripts/hq/application.js.coffee +0 -94
- data/templates/app/assets/stylesheets/hq/application.css.sass +0 -92
- data/templates/app/controllers/application_controller.rb.erb +0 -48
- data/templates/app/controllers/concerns/basic_authentication.rb +0 -18
- data/templates/app/controllers/hq/application_controller.rb +0 -18
- data/templates/app/controllers/hq/cities_controller.rb +0 -54
- data/templates/app/controllers/hq/countries_controller.rb +0 -54
- data/templates/app/controllers/hq/dashboard_controller.rb +0 -8
- data/templates/app/controllers/hq/registrations_controller.rb +0 -21
- data/templates/app/controllers/user/dashboard_controller.rb +0 -8
- data/templates/app/controllers/user/profile_controller.rb +0 -34
- data/templates/app/controllers/user/user_application_controller.rb +0 -26
- data/templates/app/controllers/welcome_controller.rb +0 -4
- data/templates/app/helpers/application_helper.rb.erb +0 -27
- data/templates/app/mailers/admin_mailer.rb +0 -10
- data/templates/app/mailers/base_mailer.rb +0 -4
- data/templates/app/mailers/user_mailer.rb +0 -10
- data/templates/app/models/admin.rb +0 -51
- data/templates/app/models/audit.rb +0 -3
- data/templates/app/models/city.rb +0 -12
- data/templates/app/models/country.rb +0 -12
- data/templates/app/models/user.rb +0 -54
- data/templates/app/views/admin_mailer/login_info.html.haml +0 -13
- data/templates/app/views/devise/mailer/confirmation_instructions.html.haml +0 -6
- data/templates/app/views/devise/mailer/reset_password_instructions.html.haml +0 -9
- data/templates/app/views/devise/passwords/edit.html.haml +0 -11
- data/templates/app/views/devise/passwords/new.html.haml +0 -9
- data/templates/app/views/devise/registrations/edit.html.haml +0 -12
- data/templates/app/views/devise/registrations/new.html.haml +0 -24
- data/templates/app/views/devise/shared/_links.haml +0 -22
- data/templates/app/views/errors/internal_server_error.html.haml +0 -2
- data/templates/app/views/errors/not_found.html.haml +0 -2
- data/templates/app/views/hq/admins/_admin.html.haml +0 -21
- data/templates/app/views/hq/admins/_filters.html.haml +0 -20
- data/templates/app/views/hq/admins/_form.html.haml +0 -17
- data/templates/app/views/hq/admins/_list.html.haml +0 -15
- data/templates/app/views/hq/admins/edit.html.haml +0 -3
- data/templates/app/views/hq/admins/index.html.haml +0 -18
- data/templates/app/views/hq/audits/_filters.html.haml +0 -32
- data/templates/app/views/hq/audits/_list.html.haml +0 -37
- data/templates/app/views/hq/audits/show.html.haml +0 -5
- data/templates/app/views/hq/cities/_blank.html.haml +0 -9
- data/templates/app/views/hq/cities/_city.html.haml +0 -12
- data/templates/app/views/hq/cities/_filters.html.haml +0 -15
- data/templates/app/views/hq/cities/_form.html.haml +0 -15
- data/templates/app/views/hq/cities/_list.html.haml +0 -13
- data/templates/app/views/hq/cities/edit.html.haml +0 -3
- data/templates/app/views/hq/cities/index.html.haml +0 -18
- data/templates/app/views/hq/cities/new.html.haml +0 -3
- data/templates/app/views/hq/cities/show.html.haml +0 -13
- data/templates/app/views/hq/countries/_blank.html.haml +0 -9
- data/templates/app/views/hq/countries/_country.html.haml +0 -11
- data/templates/app/views/hq/countries/_filters.html.haml +0 -14
- data/templates/app/views/hq/countries/_form.html.haml +0 -14
- data/templates/app/views/hq/countries/_list.html.haml +0 -12
- data/templates/app/views/hq/countries/edit.html.haml +0 -3
- data/templates/app/views/hq/countries/index.html.haml +0 -18
- data/templates/app/views/hq/countries/new.html.haml +0 -3
- data/templates/app/views/hq/countries/show.html.haml +0 -14
- data/templates/app/views/hq/dashboard/index.html.haml +0 -8
- data/templates/app/views/hq/passwords/edit.html.haml +0 -12
- data/templates/app/views/hq/passwords/new.html.haml +0 -9
- data/templates/app/views/hq/registrations/edit.html.haml +0 -19
- data/templates/app/views/hq/sessions/new.html.haml +0 -11
- data/templates/app/views/hq/users/_filters.html.haml +0 -20
- data/templates/app/views/hq/users/_form.html.haml +0 -18
- data/templates/app/views/hq/users/_list.html.haml +0 -15
- data/templates/app/views/hq/users/_user.html.haml +0 -20
- data/templates/app/views/hq/users/edit.html.haml +0 -3
- data/templates/app/views/hq/users/index.html.haml +0 -18
- data/templates/app/views/layouts/application.html.haml.erb +0 -56
- data/templates/app/views/layouts/hq/application.html.haml.erb +0 -55
- data/templates/app/views/layouts/hq/login.html.haml.erb +0 -35
- data/templates/app/views/layouts/hq/partials/_dock.html.haml.erb +0 -36
- data/templates/app/views/layouts/hq/partials/_navbar.html.haml.erb +0 -22
- data/templates/app/views/layouts/mailer.html.haml.erb +0 -321
- data/templates/app/views/layouts/mailer.text.haml +0 -1
- data/templates/app/views/layouts/partials/_trackers.html.haml.erb +0 -0
- data/templates/app/views/layouts/partials/_warnings.html.haml.erb +0 -3
- data/templates/app/views/user/dashboard/index.html.haml +0 -8
- data/templates/app/views/user/passwords/edit.html.haml +0 -12
- data/templates/app/views/user/passwords/new.html.haml +0 -10
- data/templates/app/views/user/profile/edit.html.haml +0 -3
- data/templates/app/views/user/profile/show.html.haml +0 -18
- data/templates/app/views/user/registrations/edit.html.haml +0 -19
- data/templates/app/views/user/sessions/new.html.haml +0 -11
- data/templates/app/views/user_mailer/login_info.html.haml +0 -13
- data/templates/app/views/welcome/index.html.haml.erb +0 -16
- data/templates/config/database.yml.erb +0 -21
- data/templates/config/deploy.rb +0 -56
- data/templates/config/initializers/devise_async.rb +0 -6
- data/templates/config/initializers/disable_xml_params.rb +0 -3
- data/templates/config/initializers/mail.rb +0 -13
- data/templates/config/initializers/paperclip.rb +0 -10
- data/templates/config/initializers/secret_token.erb +0 -25
- data/templates/config/initializers/show_for.rb +0 -3
- data/templates/config/initializers/sidekiq.rb +0 -13
- data/templates/config/initializers/simple_form.rb +0 -142
- data/templates/config/initializers/simple_form_bootstrap.rb +0 -207
- data/templates/config/routes.erb +0 -51
- data/templates/config/settings.yml +0 -0
- data/templates/config/settings/production.yml +0 -0
- data/templates/config/settings/staging.yml +0 -0
- data/templates/config/sidekiq.yml +0 -13
- data/templates/cybele_Gemfile +0 -106
- data/templates/cybele_version.txt +0 -1
- data/templates/env.sample.erb +0 -11
- data/templates/lib/application_responder.rb +0 -8
- data/templates/lib/data/cities.yml +0 -163
- data/templates/lib/tasks/annotate.rake +0 -6
- data/templates/lib/tasks/dev.rake +0 -56
- data/templates/lib/tasks/sidekiq.rake +0 -26
- data/templates/lib/templates/rails/responders_controller/controller.rb +0 -56
- data/templates/public/images/missing_cover.png +0 -0
- data/templates/public/images/missing_cover@2x.png +0 -0
- data/templates/public/images/missing_logo.png +0 -0
- data/templates/public/images/missing_logo@2x.png +0 -0
- data/templates/public/images/sprite.png +0 -0
@@ -0,0 +1,30 @@
|
|
1
|
+
.card
|
2
|
+
.card-header
|
3
|
+
%i.fas.fa-edit
|
4
|
+
= t('devise.registration.edit.title', model: resource.class.model_name.human)
|
5
|
+
.card-body
|
6
|
+
= simple_form_for resource,
|
7
|
+
as: resource_name,
|
8
|
+
url: user_registration_path,
|
9
|
+
html: { method: :put } do |f|
|
10
|
+
= f.error_notification
|
11
|
+
.form-inputs
|
12
|
+
= f.input :email, required: true, autofocus: true
|
13
|
+
- if devise_mapping.confirmable? && resource.pending_reconfirmation?
|
14
|
+
%p= t('devise.registration.waiting_confirmation', email: resource.unconfirmed_email)
|
15
|
+
%hr
|
16
|
+
= f.input :password,
|
17
|
+
label: t('activerecord.attributes.user.password'),
|
18
|
+
autocomplete: 'off',
|
19
|
+
hint: t('devise.registration.hint_password'),
|
20
|
+
required: false
|
21
|
+
= f.input :password_confirmation,
|
22
|
+
label: t('activerecord.attributes.user.password_confirmation'),
|
23
|
+
required: false
|
24
|
+
%hr
|
25
|
+
= f.input :current_password,
|
26
|
+
label: t('activerecord.attributes.user.current_password'),
|
27
|
+
hint: t('devise.registration.hint_current_password'),
|
28
|
+
required: true
|
29
|
+
.form-actions
|
30
|
+
= f.button :submit, t('view.btn.update'), class: 'btn btn-primary btn-block'
|
@@ -0,0 +1,33 @@
|
|
1
|
+
.card
|
2
|
+
.card-header
|
3
|
+
%h2.text-center
|
4
|
+
= t('devise.registration.new.title', model: resource.class.model_name.human)
|
5
|
+
- if devise_mapping.omniauthable?
|
6
|
+
- resource_class.omniauth_providers.each do |provider|
|
7
|
+
= link_to omniauth_authorize_path(resource_name, provider),
|
8
|
+
class: 'btn btn-lg btn-primary btn-block' do
|
9
|
+
%i.fas.fa-facebook
|
10
|
+
= t('devise.shared.links.signup_with', name: provider.to_s.titleize)
|
11
|
+
%h3.text-center
|
12
|
+
= t('view.or')
|
13
|
+
.card-body
|
14
|
+
= simple_form_for resource,
|
15
|
+
as: resource_name,
|
16
|
+
url: registration_path(resource_name),
|
17
|
+
validate: true do |f|
|
18
|
+
= f.error_notification
|
19
|
+
.form-inputs
|
20
|
+
= f.input :email
|
21
|
+
= f.input :password
|
22
|
+
= f.input :password_confirmation
|
23
|
+
= f.input :name
|
24
|
+
= f.input :surname
|
25
|
+
= f.input :time_zone,
|
26
|
+
input_html: { class: 'chosen-select' },
|
27
|
+
include_blank: t('view.select')
|
28
|
+
.form-actions
|
29
|
+
= f.button :submit,
|
30
|
+
t('devise.registration.new.button'),
|
31
|
+
class: 'btn btn-primary btn-block'
|
32
|
+
.card-footer.text-center
|
33
|
+
= render 'devise/shared/links'
|
@@ -0,0 +1,15 @@
|
|
1
|
+
.card
|
2
|
+
.card-header.text-center
|
3
|
+
%h2
|
4
|
+
= t('devise.session.title', model: resource.class.model_name.human)
|
5
|
+
.card-body
|
6
|
+
= simple_form_for resource, as: resource_name, url: session_path(resource_name) do |f|
|
7
|
+
.form-inputs
|
8
|
+
= f.input :email, required: false, autofocus: true
|
9
|
+
= f.input :password, required: false
|
10
|
+
- if devise_mapping.rememberable?
|
11
|
+
= f.input :remember_me, as: :boolean, label: t('devise.session.remember_me')
|
12
|
+
.form-actions
|
13
|
+
= f.button :submit, t('devise.session.button'), class: 'btn btn-primary btn-block'
|
14
|
+
.card-footer.text-center
|
15
|
+
= render 'devise/shared/links'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
%h2= t('mailer.hello')
|
2
|
+
|
3
|
+
%p= t('mailer.user.login_info.first_info')
|
4
|
+
%p= t('mailer.user.login_info.second_info')
|
5
|
+
%p
|
6
|
+
%strong= "#{t('activerecord.attributes.user.email')} :"
|
7
|
+
= @user.email
|
8
|
+
%p
|
9
|
+
%strong= "#{t('activerecord.attributes.user.password')} :"
|
10
|
+
= @password
|
11
|
+
%p= link_to t('mailer.user.login_info.btn_login'), new_user_session_url
|
12
|
+
|
13
|
+
%p= t('mailer.user.login_info.last_info', link: new_user_session_url).html_safe
|
@@ -0,0 +1,19 @@
|
|
1
|
+
.jumbotron
|
2
|
+
%h1 Welcome to <%= app_name.capitalize %>
|
3
|
+
- if current_user
|
4
|
+
= link_to t('view.navbar.sign_out'),
|
5
|
+
destroy_user_session_path,
|
6
|
+
class: 'btn btn-link',
|
7
|
+
method: :delete
|
8
|
+
.row-fluid.marketing
|
9
|
+
%p
|
10
|
+
%strong Name:
|
11
|
+
= current_user.name
|
12
|
+
%p
|
13
|
+
%strong Email:
|
14
|
+
= current_user.email
|
15
|
+
= link_to t('view.navbar.edit_login_info'), edit_user_registration_path, class: 'btn btn-link'
|
16
|
+
= link_to t('view.navbar.profile'), user_profile_path(current_user), class: 'btn btn-link'
|
17
|
+
- else
|
18
|
+
= link_to t('view.navbar.signup'), new_user_registration_path, class: 'btn btn-success'
|
19
|
+
= link_to t('view.navbar.signin'), new_user_session_path, class: 'btn btn-link'
|
File without changes
|
File without changes
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module BasicAuthentication
|
4
|
+
extend ActiveSupport::Concern
|
5
|
+
|
6
|
+
included do
|
7
|
+
before_action :authenticate
|
8
|
+
end
|
9
|
+
|
10
|
+
private
|
11
|
+
|
12
|
+
def authenticate
|
13
|
+
return unless ENV['BASIC_AUTH_IS_ACTIVE'] == 'yes'
|
14
|
+
authenticate_or_request_with_http_basic do |username, password|
|
15
|
+
username == basic_auth.username && password == basic_auth.password
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def basic_auth
|
20
|
+
Settings.basic_auth
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,99 @@
|
|
1
|
+
en:
|
2
|
+
devise:
|
3
|
+
session:
|
4
|
+
title: "%{model} Log in"
|
5
|
+
button: Log In
|
6
|
+
remember_me: Remember me
|
7
|
+
deactivated: "Sorry, this account has been disabled."
|
8
|
+
sessions:
|
9
|
+
signed_in: "Signed in successfully."
|
10
|
+
signed_out: "Signed out successfully."
|
11
|
+
already_signed_out: "Signed out successfully."
|
12
|
+
registration:
|
13
|
+
title: 'Update %{model} Login Info'
|
14
|
+
waiting_confirmation: "Currently waiting confirmation for: %{email}"
|
15
|
+
hint_password: "Leave it blank if you don't want to change it"
|
16
|
+
hint_current_password: "we need your current password to confirm your changes"
|
17
|
+
new:
|
18
|
+
title: '%{model} Sign Up'
|
19
|
+
character_hint: "%{length} characters minimum"
|
20
|
+
button: Sign Up
|
21
|
+
edit:
|
22
|
+
title: '%{model} Log in info'
|
23
|
+
registrations:
|
24
|
+
destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon."
|
25
|
+
signed_up: "Welcome! You have signed up successfully."
|
26
|
+
signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
|
27
|
+
signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
|
28
|
+
signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account."
|
29
|
+
update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirm link to confirm your new email address."
|
30
|
+
updated: "Your account has been updated successfully."
|
31
|
+
shared:
|
32
|
+
links:
|
33
|
+
signup: Sign Up
|
34
|
+
signin: Log In
|
35
|
+
forgot_password: "Forgot your password?"
|
36
|
+
confirmation_instructions: "Did not you get the confirmation instructions?"
|
37
|
+
unlock_instructions: "Did not you get the unlock instructions?"
|
38
|
+
sign_in_with: "Sign in with %{name}"
|
39
|
+
sign_up_with: "Sign up with %{name}"
|
40
|
+
confirmation:
|
41
|
+
new:
|
42
|
+
title: "Resend confirmation instructions"
|
43
|
+
btn:
|
44
|
+
resend: Resend
|
45
|
+
password:
|
46
|
+
new:
|
47
|
+
title: "Forgot your password?"
|
48
|
+
reset:
|
49
|
+
instructions: Send password reset instructions
|
50
|
+
edit:
|
51
|
+
title: "Change your password"
|
52
|
+
new_password: "New password"
|
53
|
+
confirmation: "Confirm your new password"
|
54
|
+
button: "Change my password"
|
55
|
+
passwords:
|
56
|
+
no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
|
57
|
+
send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes."
|
58
|
+
send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
|
59
|
+
updated: "Your password has been changed successfully. You are now signed in."
|
60
|
+
updated_not_active: "Your password has been changed successfully."
|
61
|
+
failure:
|
62
|
+
already_authenticated: "You are already signed in."
|
63
|
+
inactive: "Your account is not activated yet."
|
64
|
+
invalid: "Invalid %{authentication_keys} or password."
|
65
|
+
locked: "Your account is locked."
|
66
|
+
last_attempt: "You have one more attempt before your account is locked."
|
67
|
+
not_found_in_database: "Invalid %{authentication_keys} or password."
|
68
|
+
timeout: "Your session expired. Please sign in again to continue."
|
69
|
+
unauthenticated: "You need to sign in or sign up before continuing."
|
70
|
+
unconfirmed: "You have to confirm your email address before continuing."
|
71
|
+
mailer:
|
72
|
+
confirmation_instructions:
|
73
|
+
subject: "Confirmation instructions"
|
74
|
+
info: "You can confirm your account email through the link below:"
|
75
|
+
welcome: "Welcome %{email}!"
|
76
|
+
confirm_link: "Confirm my account"
|
77
|
+
reset_password_instructions:
|
78
|
+
subject: "Reset password instructions"
|
79
|
+
hello: "Hello %{email}!"
|
80
|
+
info: "Someone has requested a link to change your password. You can do this through the link below."
|
81
|
+
change_password_link: "Change my password"
|
82
|
+
desc1: "If you didn't request this, please ignore this email."
|
83
|
+
desc2: "Your password won't change until you access the link above and create a new one."
|
84
|
+
unlock_instructions:
|
85
|
+
subject: "Unlock instructions"
|
86
|
+
hello: "Hello %{email}!"
|
87
|
+
info: "Your account has been locked due to an excessive number of unsuccessful sign in attempts."
|
88
|
+
info2: "Click the link below to unlock your account:"
|
89
|
+
unlock_link: "Unlock my account"
|
90
|
+
errors:
|
91
|
+
messages:
|
92
|
+
already_confirmed: was already confirmed, please try signing in
|
93
|
+
confirmation_period_expired: needs to be confirmed within %{period}, please request a new one
|
94
|
+
expired: has expired, please request a new one
|
95
|
+
not_found: not found
|
96
|
+
not_locked: was not locked
|
97
|
+
not_saved:
|
98
|
+
one: '1 error prohibited this %{resource} from being saved:'
|
99
|
+
other: "%{count} errors prohibited this %{resource} from being saved:"
|
@@ -0,0 +1,97 @@
|
|
1
|
+
tr:
|
2
|
+
devise:
|
3
|
+
session:
|
4
|
+
title: '%{model} Girişi'
|
5
|
+
button: Giriş Yap
|
6
|
+
remember_me: Beni Hatırla
|
7
|
+
deactivated: Üzgünüz, bu hesap pasif hale getirilmiştir.
|
8
|
+
sessions:
|
9
|
+
signed_in: Giriş başarılı.
|
10
|
+
signed_out: Çıkış başarılı.
|
11
|
+
already_signed_out: Çıkış başarılı.
|
12
|
+
registration:
|
13
|
+
title: '%{model} Giriş Bilgilerini Güncelle'
|
14
|
+
waiting_confirmation: 'E-posta addresi onayı için bekleniyor: %{email}'
|
15
|
+
hint_password: Değiştirmek istemiyorsanız boş bırakınız
|
16
|
+
hint_current_password: Değişiklikleri onaylamak için şuan ki parolanız girmelisiniz
|
17
|
+
new:
|
18
|
+
title: '%{model} Kayıt İşlemi'
|
19
|
+
character_hint: 'Minimum %{length} karakter'
|
20
|
+
button: Kayıt Ol
|
21
|
+
edit:
|
22
|
+
title: '%{model} Giriş Bilgilerini Güncelle'
|
23
|
+
registrations:
|
24
|
+
destroyed: "Güle güle! Hesabınız başarıyla iptal edildi. Yakında tekrar görüşmeyi umuyoruz."
|
25
|
+
signed_up: Hoşgeldiniz! Başarıyla üye oldunuz.
|
26
|
+
signed_up_but_inactive: "Başarıyla üye oldunuz. Fakat, hesabınız henüz etkinleştirilmediği için oturum açamadık."
|
27
|
+
signed_up_but_locked: "Başarıyla üye oldunuz. Fakat, hesabınız kilitlendiği için giriş yapamadık."
|
28
|
+
signed_up_but_unconfirmed: "E-posta adresinize bir onay bağlantısı olan bir mesaj gönderildi. Hesabınızı etkinleştirmek için lütfen bağlantıyı tıklayın."
|
29
|
+
update_needs_confirmation: "Hesabınızı başarıyla güncellediniz, fakat yeni e-posta adresinizi doğrulamamız gerekiyor. Lütfen e-postanızı kontrol edin ve yeni e-posta adresinizi onaylamak için onay linkini tıklayın."
|
30
|
+
updated: "Hesabınız başarıyla güncellendi."
|
31
|
+
shared:
|
32
|
+
links:
|
33
|
+
signup: Kayıt Ol
|
34
|
+
signin: Giriş Yap
|
35
|
+
forgot_password: Parolanızı mı unuttunuz?
|
36
|
+
confirmation_instructions: Onaylama yönergesini mi almadınız?
|
37
|
+
unlock_instructions: Kapatma yönergesini mi almadınız?
|
38
|
+
signin_with: '%{name} ile Giriş Yap'
|
39
|
+
signup_with: '%{name} ile Kayıt Ol'
|
40
|
+
confirmation:
|
41
|
+
new:
|
42
|
+
title: Onaylama Talimatlarını Yeniden Gönder
|
43
|
+
btn:
|
44
|
+
resend: Gönder
|
45
|
+
password:
|
46
|
+
new:
|
47
|
+
title: Parolanızı mı unuttunuz?
|
48
|
+
reset:
|
49
|
+
instructions: Parola sıfırlama talimatlarını gönder
|
50
|
+
edit:
|
51
|
+
title: Parolanızı Değiştiriniz
|
52
|
+
new_password: Yeni parolanız
|
53
|
+
confirmation: Yeni parola doğrulması
|
54
|
+
button: Parolamı Değiştir
|
55
|
+
passwords:
|
56
|
+
no_token: "Parola sıfırlama e-postasından gelmeden bu sayfaya erişemezsiniz. Parola sıfırlama e-postasından geliyorsanız lütfen sağlanan tam URL'yi kullandığınızdan emin olun."
|
57
|
+
send_instructions: "Birkaç dakika içinde parolanızı nasıl sıfırlayacağınıza ilişkin talimatları içeren bir e-posta alacaksınız."
|
58
|
+
send_paranoid_instructions: "E-posta adresiniz veritabanımızda mevcutsa, birkaç dakika içinde e-posta adresinize bir parola kurtarma bağlantısı gönderilecektir."
|
59
|
+
updated: Parolanız başarıyla değiştirildi. Şimdi giriş yapınız.
|
60
|
+
updated_not_active: Parolanız başarıyla değiştirildi.
|
61
|
+
failure:
|
62
|
+
already_authenticated: Zaten giriş yaptınız.
|
63
|
+
inactive: Hesabınız henüz aktif değil.
|
64
|
+
invalid: 'Geçersiz %{authentication_keys} veya parola.'
|
65
|
+
locked: Hesabınız kilitlendi.
|
66
|
+
last_attempt: Hesabınız kilitlenmeden önce bir denemeniz daha var.
|
67
|
+
not_found_in_database: 'Geçersiz %{authentication_keys} veya şifre.'
|
68
|
+
timeout: Oturumunuzun süresi doldu. Devam etmek için lütfen tekrar giriş yapınız.
|
69
|
+
unauthenticated: Devam etmeden önce giriş yapmanız veya kayıt olmanız gerekir.
|
70
|
+
unconfirmed: Devam etmeden önce e-posta adresinizi onaylamanız gerekir.
|
71
|
+
mailer:
|
72
|
+
confirmation_instructions:
|
73
|
+
subject: Onay talimatları
|
74
|
+
info: E-posta hesabınızı aşağıdaki bağlantıyı kullanarak onaylayabilirsiniz.
|
75
|
+
welcome: '%{email} Hoş geldiniz!'
|
76
|
+
confirm_link: Hesabımı onayla
|
77
|
+
reset_password_instructions:
|
78
|
+
subject: Parola talimatlarını sıfırla
|
79
|
+
hello: '%{email} Merhaba!'
|
80
|
+
info: "Birisi, parolanızı değiştirmek için bir bağlantı istedi. Bunu aşağıdaki bağlantıyla yapabilirsiniz."
|
81
|
+
change_password_link: Parolamı değiştir
|
82
|
+
desc1: 'Bu talepte bulunmadıysanız, lütfen bu e-postayı yoksayın.'
|
83
|
+
desc2: "Yukarıdaki bağlantıya erişip yeni bir parola oluşturana kadar parolanız değişmeyecektir."
|
84
|
+
unlock_instructions:
|
85
|
+
subject: Talimatların kilidini aç
|
86
|
+
hello: '%{email} Merhaba!'
|
87
|
+
info: Aşırı giriş yapma talebi yüzünden hesabınız kilitlendi.
|
88
|
+
info2: 'Hesabınızın kilidini açmak için aşağıdaki bağlantıyı tıklayın:'
|
89
|
+
unlock_link: Hesabımın kilidini aç
|
90
|
+
errors:
|
91
|
+
messages:
|
92
|
+
already_confirmed: zaten onaylanmış, lütfen giriş yapmayı deneyin
|
93
|
+
confirmation_period_expired: "%{period} içinde onaylanması gerekmektedir, lütfen yeni bir tane isteyiniz."
|
94
|
+
expired: süresi doldu, lütfen yeni bir tane isteyin
|
95
|
+
not_found: bulunamadı
|
96
|
+
not_locked: kilitlenmemiş
|
97
|
+
not_saved: "%{count} tane hata %{resource}'ın kaydını engelledi."
|
@@ -0,0 +1,34 @@
|
|
1
|
+
---
|
2
|
+
en:
|
3
|
+
phone:
|
4
|
+
formats:
|
5
|
+
long: '+99 (999) 999-9999'
|
6
|
+
date:
|
7
|
+
formats:
|
8
|
+
excel:
|
9
|
+
rails: '%d/%m/%Y'
|
10
|
+
datepicker:
|
11
|
+
rails: '%d/%m/%Y'
|
12
|
+
js: 'd/m/Y'
|
13
|
+
default: "%d/%m/%Y"
|
14
|
+
year_month: "%Y-%B"
|
15
|
+
date: '%d %B %Y'
|
16
|
+
time:
|
17
|
+
formats:
|
18
|
+
certificate_completed_at_english: '%m/%d/%Y'
|
19
|
+
certificate_completed_at: '%d/%m/%Y'
|
20
|
+
datetimepicker_rails: '%d/%m/%Y %H:%M'
|
21
|
+
datetimepicker:
|
22
|
+
rails: '%d/%m/%Y %H:%M'
|
23
|
+
js: 'd/m/Y H:i'
|
24
|
+
default: "%d/%m/%Y %H:%M"
|
25
|
+
year_month: "%Y-%B"
|
26
|
+
date: '%d %B %Y'
|
27
|
+
due_at:
|
28
|
+
rails: '%d/%m/%Y %H:%M'
|
29
|
+
js: 'd/m/Y H:i'
|
30
|
+
number:
|
31
|
+
currency:
|
32
|
+
format:
|
33
|
+
format: "%u %n"
|
34
|
+
unit: "₺"
|
@@ -0,0 +1,32 @@
|
|
1
|
+
en:
|
2
|
+
mailer:
|
3
|
+
salut: 'Hello %{user},'
|
4
|
+
hello: 'Welcome,'
|
5
|
+
all_rights_reserved: "All Rights Reserved"
|
6
|
+
web_address: Web address
|
7
|
+
email_address: Email
|
8
|
+
phone: Phone
|
9
|
+
sent_at: Sent time
|
10
|
+
devise:
|
11
|
+
confirmation_instruction:
|
12
|
+
desc1: "You can confirm your account email through the link below:"
|
13
|
+
btn_confirm: "Confirm my account"
|
14
|
+
reset_password:
|
15
|
+
desc1: "Someone has requested a link to change your password. You can do this through the link below."
|
16
|
+
change: "Change my password"
|
17
|
+
desc2: "If you didn't request this, please ignore this email."
|
18
|
+
desc3: "Your password won't change until you access the link above and create a new one."
|
19
|
+
admin:
|
20
|
+
login_info:
|
21
|
+
title: Your Administrator Login Information
|
22
|
+
first_info: Your admin account has been created. You can now log in to the admin portal.
|
23
|
+
second_info: Your login information is
|
24
|
+
btn_login: Click to login
|
25
|
+
last_info: "If you can not use 'Login' button, your login <br/> <strong> Link : </strong> %{link} </br> Copy this link and paste it into your browser."
|
26
|
+
user:
|
27
|
+
login_info:
|
28
|
+
title: User Login Information
|
29
|
+
first_info: Your user account has been created. You can now log in to the user portal.
|
30
|
+
second_info: Your login information is
|
31
|
+
btn_login: Click to login
|
32
|
+
last_info: "If you can not use 'Login' button, your login <br/> <strong> Link : </strong> %{link} </br> Copy this link and paste it into your browser."
|