summaryrefslogtreecommitdiff
path: root/app/views/devise
Commit message (Collapse)AuthorAgeFilesLines
* Fix login tabsAnnabel Dunstone Gray2018-05-243-14/+14
|
* Merge branch 'master' into bootstrap4Clement Ho2018-05-082-2/+2
|\
| * Replace time_ago_in_words with JS-based oneTakuya Noguchi2018-04-272-2/+2
| |
* | Revert .hide to .d-none conversionClement Ho2018-04-241-3/+3
| |
* | Fix tabs on sign in pageClement Ho2018-04-193-3/+3
| |
* | Fix alignment on login pageClement Ho2018-04-164-4/+4
| |
* | Merge branch 'master' into bootstrap4Clement Ho2018-04-123-3/+3
|\ \ | |/
| * Refactor CSS to eliminate vertical misalignment of login navTakuya Noguchi2018-04-113-3/+3
| |
* | [skip ci] .help-block to .form-text.text-mutedClement Ho2018-04-111-1/+1
| |
* | [skip ci] Convert .checkbox to .form-checkClement Ho2018-04-114-4/+4
| |
* | [skip ci] Rename .hide to .d-noneClement Ho2018-04-091-3/+3
| |
* | [skip ci] Replace .pull-right with .float-rightClement Ho2018-04-091-1/+1
|/
* Remove u2f webpack bundleMike Greiling2018-03-011-4/+0
|
* Chart.html.haml refactorJacob Schatz2018-02-191-1/+1
|
* use Gitlab::UserSettings directly as a singleton instead of ↵Mario de la Ossa2018-02-021-2/+2
| | | | including/extending it
* Fix Shows signin tab after new user email confirmationJacopo2018-01-182-2/+2
| | | | When a new user confirm his email the signin tab is correctly shown.
* remove ambiguity about which resource type to be using for new sessionsBrett Walker2017-12-055-10/+10
|
* Allow password authentication to be disabled entirelyMarkus Koller2017-11-235-9/+9
|
* Merge branch 'master' into ↵Douwe Maan2017-10-051-2/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | digitalmoksha/gitlab-ce-feature/verify_secondary_emails # Conflicts: # app/controllers/admin/users_controller.rb # app/controllers/confirmations_controller.rb # app/controllers/profiles/emails_controller.rb # app/models/user.rb # app/services/emails/base_service.rb # app/services/emails/destroy_service.rb # app/views/devise/mailer/confirmation_instructions.html.haml # lib/api/users.rb # spec/services/emails/destroy_service_spec.rb
| * Changed account confirmation line to e-mail text. This MR fixes issue #13637bitsapien2017-09-281-2/+3
| | | | | | | | added changelog
* | fix whitespaceBrett Walker2017-09-241-1/+1
| |
* | small cleanup changes based on feedbackBrett Walker2017-09-232-9/+2
| |
* | move #cta properly under #contentBrett Walker2017-09-232-9/+9
| |
* | refactored the account confirmation into a partial. Also made theBrett Walker2017-09-236-31/+38
| | | | | | | | text in the `.text` version consistent with the `.html` version
* | Send a confirmation email when the user adds a secondary email address. ↵Brett Walker2017-09-234-14/+36
|/ | | | Utilizes the Devise `confirmable` capabilities. Issue #37385
* Add missing classes to omniauth remember-me checkbox and add correct font-sizeJedidiah2017-09-141-3/+5
|
* add padding above Remember Me for social login35178-remember-me-in-omniauth-box-seems-too-close-to-iconsSimon Knox2017-07-201-2/+2
| | | | also fix case
* Fixes needed when GitLab sign-in is not enabledRobin Bobbitt2017-07-134-8/+8
| | | | | | | | | When sign-in is disabled: - skip password expiration checks - prevent password reset requests - don’t show Password tab in User Settings - don’t allow login with username/password for Git over HTTP requests - render 404 on requests to Profiles::PasswordsController
* Merge branch '18000-remember-me-for-oauth-login' into 'master'Douwe Maan2017-07-061-1/+4
|\ | | | | | | | | | | | | Fix `migration:path` build for "Honor the 'Remember me' parameter for OAuth-based login" Closes #34713 See merge request !12668
| * Implement review comments for !11963 from @adamniedzielski.Timothy Andrew2017-07-061-1/+1
| | | | | | | | | | | | | | - Change double quotes to single quotes. - Why is `OmniAuth.config.full_host` being reassigned in the integration test? - Use `map` over `map!` to avoid `dup` in the `gitlab:info` rake task - Other minor changes
| * Move OAuth "remember me" javascript logic into a class.Timothy Andrew2017-07-061-14/+0
| |
| * Add integration tests around OAuth login.Timothy Andrew2017-07-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - There was previously a test for `saml` login in `login_spec`, but this didn't seem to be passing. A lot of things didn't seem right here, and I suspect that this test hasn't been running. I'll investigate this further. - It took almost a whole working day to figure out this line: OmniAuth.config.full_host = ->(request) { request['REQUEST_URI'].sub(request['REQUEST_PATH'], '') } As always, it's obvious in retrospect, but it took some digging to figure out tests were failing and returning 404s during the callback phase. - Test all OAuth providers - github, twitter, bitbucket, gitlab, google, and facebook
| * Implement "remember me" for OAuth-based login.Timothy Andrew2017-07-061-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | - Pass a `remember_me` query parameter along with the initial OAuth request, and pick this parameter up during the omniauth callback from request.env['omniauth.params']`. - For 2FA-based login, copy the `remember_me` param from `omniauth.params` to `params`, which the 2FA process will pick up. - For non-2FA-based login, simply call the `remember_me` devise method to set the session cookie.
* | Revert "Merge branch '18000-remember-me-for-oauth-login' into 'master'"revert-6df61942Sean McGivern2017-07-051-4/+1
| | | | | | This reverts merge request !11963
* | Merge branch '18000-remember-me-for-oauth-login' into 'master'Sean McGivern2017-07-051-1/+4
|\ \ | | | | | | | | | | | | | | | | | | Honor the "Remember me" parameter for OAuth-based login Closes #18000 See merge request !11963
| * | Implement review comments for !11963 from @adamniedzielski.Timothy Andrew2017-07-031-1/+1
| | | | | | | | | | | | | | | | | | | | | - Change double quotes to single quotes. - Why is `OmniAuth.config.full_host` being reassigned in the integration test? - Use `map` over `map!` to avoid `dup` in the `gitlab:info` rake task - Other minor changes
| * | Move OAuth "remember me" javascript logic into a class.Timothy Andrew2017-07-031-14/+0
| | |
| * | Add integration tests around OAuth login.Timothy Andrew2017-07-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - There was previously a test for `saml` login in `login_spec`, but this didn't seem to be passing. A lot of things didn't seem right here, and I suspect that this test hasn't been running. I'll investigate this further. - It took almost a whole working day to figure out this line: OmniAuth.config.full_host = ->(request) { request['REQUEST_URI'].sub(request['REQUEST_PATH'], '') } As always, it's obvious in retrospect, but it took some digging to figure out tests were failing and returning 404s during the callback phase. - Test all OAuth providers - github, twitter, bitbucket, gitlab, google, and facebook
| * | Implement "remember me" for OAuth-based login.Timothy Andrew2017-07-031-1/+18
| |/ | | | | | | | | | | | | | | | | | | | | | | - Pass a `remember_me` query parameter along with the initial OAuth request, and pick this parameter up during the omniauth callback from request.env['omniauth.params']` - For 2FA-based login, copy the `remember_me` param from `omniauth.params` to `params`, which the 2FA process will pick up. - For non-2FA-based login, simply call the `remember_me` devise method to set the session cookie.
* | add margin between captcha and register button29000-recaptcha-marginSimon Knox2017-07-031-1/+1
|/
* use common devise layout and use heading styleAlexis Reigel2017-06-134-45/+41
|
* use common layout for devise mailerAlexis Reigel2017-06-132-22/+20
|
* Revert "Remove changes that are not absolutely necessary"Douwe Maan2017-05-241-1/+1
| | | This reverts commit b0498c176fa134761d899c9b369be12f1ca789c5
* Resolve ""Username or email" label on login form does not point to its ↵Tim Zallmann2017-05-162-3/+3
| | | | corresponding input field"
* Corrected alignment for the remember-me checkbox in the login viewJose Ivan Vargas2017-03-221-1/+1
|
* Change label for name on sign up form29209-sign-up-form-nametauriedavis2017-03-091-1/+1
|
* move u2f library to webpackmove-u2f-bundleMike Greiling2017-03-071-1/+1
|
* Use Namespace#full_path instead of #path where appropriatedm-more-namespace-full-pathDouwe Maan2017-02-231-1/+1
|
* Add active_when helperSemyon Pupkov2017-02-152-2/+2
| | | | Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/24036
* Use reCaptcha when an issue identified as spamJarka Kadlecova2017-02-071-1/+1
|