summaryrefslogtreecommitdiff
path: root/app/views/devise
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Remove turbolinks.Bryce Johnson2017-02-021-1/+1
|
* Fix ImplicitDiv Haml lint failureRobert Speicher2017-01-041-1/+1
|
* Merge branch 'add_email_password_confirmation' into 'master' Douwe Maan2017-01-041-0/+3
|\ | | | | | | | | | | | | Add email confirmation field to registration form Closes #3053 See merge request !7432
| * Add email and password confirmation fields to registration formDrew Blessing2017-01-031-0/+3
| | | | | | | | | | | | | | | | | | | | | | It's too easy to mistype an email or password when signing up. The support team is receiving an increasing number of requests because users mistype their email. We can eliminate this problem by requiring users to confirm the email before registering. The same issue can occur for the password field so we should add this, too. We should note that password confirmation is part of the default Devise forms. I don't know why/when GitLab removed it.
* | HAMLLint: Fix `SpaceInsideHashAttributes` offencesKushal Pandya2016-12-316-14/+14
| |
* | HAMLLint: Fix `ImplicitDiv` offencesKushal Pandya2016-12-313-7/+7
| |
* | HAMLLint: Fix `ClassAttributeWithStaticValue` offencesKushal Pandya2016-12-312-2/+2
| |
* | Improved the u2f flow18556-polish-up-the-u2f-flowLuke "Jared" Bennett2016-12-271-1/+1
|/ | | | Added tests
* Merge branch '15081-wrong-login-tab-ldap-frontend' into 'master' Fatih Acet2016-12-091-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed Wrong Tab Selected When Loggin Fails And Multiple Login Tabs Exists ## What does this MR do? Fixes issue: 15081 Wrong Tab Selected When Loggin Fails And Multiple Login Tabs Exists This is done by saving into a cookie when the active tab changes and by always selecting that tab when the page is loaded. ## Are there points in the code the reviewer needs to double check? No ## Why was this MR needed? In order to fix the issue: 15081 ## Screenshots (if relevant) ## Does this MR meet the acceptance criteria? - [x] [Changelog entry](https://docs.gitlab.com/ce/development/changelog.html) added - [ ] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [ ] API support added - Tests - [x] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if it does - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Closes #15081 See merge request !7314
| * Fixed Wrong Tab Selected When Loggin Fails And Multiple Login Tabs ExistsJacopo2016-12-021-0/+1
| | | | | | | | | | | | | | When ldap is enabled and use "Standard" authentication method, if authentication fails the correct tab remain selected. This is done by saving into localStorage when the active tab changes and by always selecting that tab when the page is loaded.
* | Remove confirmation.scssAnnabel Dunstone Gray2016-12-061-3/+4
|/
* Un-un-revert signin tab order fix.super-secret-login-upgradeBryce Johnson2016-11-181-2/+2
|
* Allow registering users where the username contains dots (.).Timothy Andrew2016-11-181-1/+1
| | | | | | | | | | | | | | | | | | Javascript does not support the negative lookbehind assertion (?<!) used in the Ruby regex (to disallow usernames ending in `.git` or `.atom`. Getting the client side code to fully support this format is non-trivial, since we'd either have to heavily complicate the regex used, or modify the frontend code to support more complex validation schemes (it currently uses HTML5 validations). The pragmatic choice is to create a `Gitlab::Regex::NAMESPACE_REGEX_STR_SIMPLE` regex to serve as a Javascript-compatible version of `NAMESPACE_REGEX_STR`. The client-side code will not display an error for usernames ending in `.git` and `.atom`, but these will be caught by the server-side validation.
* Fix no "Register" tab if ldap auth is enabled (#24038)Luc Didry2016-11-101-0/+3
| | | | | This commit is dedicated to GuilhemB, thanks for supporting me on Tipeee :-)
* Change show-gl-field-errors to gl-show-field-errorsBryce Johnson2016-11-029-9/+9
|
* Upgrade gl_field_errors to support more use cases.Bryce Johnson2016-11-011-1/+1
|
* Merge branch 'register-tab' into 'master' Jacob Schatz2016-10-251-2/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only show register tab if signup enabled. ## What does this MR do? Fixes a regression where the register tab is activated, even if sign-up enabled is not activated in application_settings. ## Screenshots (if relevant) When signup is disabled: ![Screen_Shot_2016-10-22_at_8.56.23_PM](/uploads/bd0fa5f27114779c0d290a8151c1c253/Screen_Shot_2016-10-22_at_8.56.23_PM.png) ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG.md) entry added - [ ] All builds are passing - [x] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if it does - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? https://gitlab.com/gitlab-org/gitlab-ce/issues/23654 See merge request !7058
| * Only show register tab if signup enabled.Bryce Johnson2016-10-241-2/+3
| |
* | Merge branch 'master' into sign_in_forgot_passwordBernardo Anderson2016-10-222-2/+2
|\ \ | |/
| * Ensure custom provider tab labels don't break layout.ldap-login-stylesBryce Johnson2016-10-202-2/+2
| | | | | | | | (Also fix some issues for session views on small screens.)
* | Fix sign in page Forgot your password link overlapBernardo Anderson2016-10-221-1/+1
|/
* Change input order on Sign In form for better tabbing.unrevert-tab-order-MRClement Ho2016-10-201-2/+2
| | | | | | | | | This *unreverts* 8751491b, which was mistakenly reverted in !6328. It also changes the implementation of the original commit to work with the new login styling and markup. cc: @ClemMakesApps
* Fix aesthetic issues on CROWD login.Bryce Johnson2016-10-181-2/+2
|
* Contain normal signin in loginbox.Bryce Johnson2016-10-181-1/+3
|
* Fix superfluous margin on new_ldap submit.Bryce Johnson2016-10-181-1/+1
|
* Use correct verbiage for username in login form.Bryce Johnson2016-10-181-1/+1
|
* Fix href to server pane.Bryce Johnson2016-10-181-1/+1
|
* Fix tab refs in ldap tabs.Bryce Johnson2016-10-181-3/+3
|
* Split login box into different panes, for ldap enabled screens.Bryce Johnson2016-10-181-14/+15
|
* Fix aesthetic issues on LDAP login.Bryce Johnson2016-10-181-2/+2
|
* Fix Hash syntax to work for both Ruby 2.1 and 2.3sh-fix-ruby-2-1Stan Hu2016-10-151-2/+2
|
* Use Ruby 1.9 syntax in tab_single def and usage.Bryce Johnson2016-10-156-7/+6
|
* Fix syntax error -- missing comma in _new_crowd.Bryce Johnson2016-10-151-1/+1
|
* Fix nesting on sessions/new.Bryce Johnson2016-10-151-8/+7
|
* Unbreak all the tests relying on one login-box.Bryce Johnson2016-10-152-2/+2
|
* Fix omniauth box styling.Bryce Johnson2016-10-151-1/+1
|
* Add submit button contain with custom margin.Bryce Johnson2016-10-152-2/+2
|
* Make style fixes, make all submit buttons full-width btn-block.Bryce Johnson2016-10-151-2/+2
|
* Include correct validation error with username invalid.Bryce Johnson2016-10-151-2/+1
|
* Fix errors, get validation running for signup box and sign in.Bryce Johnson2016-10-151-1/+1
|
* Make UX upgrades to SignIn/Register views.Bryce Johnson2016-10-1516-109/+130
| | | | | | | - Tab between register and sign in forms - Add individual input validation error messages - Validate username - Update many styles for all login-box forms
* Improve tabbing usability for sign in page23279-tabbing-over-the-login-screen-should-go-from-password-to-submitClement Ho2016-10-131-2/+2
|
* Enable CacheMarkdownField for the remaining modelsNick Thomas2016-10-071-2/+2
| | | | | | | | | | | | | | | | | | | | This commit alters views for the following models to use the markdown cache if present: * AbuseReport * Appearance * ApplicationSetting * BroadcastMessage * Group * Issue * Label * MergeRequest * Milestone * Project At the same time, calls to `escape_once` have been moved into the `single_line` Banzai pipeline, so they can't be missed out by accident and the work is done at save, rather than render, time.
* fix LDAP omniauth regression (Closes: #22357)Dmitry Smirnov2016-09-211-1/+1
| | | | | | | | ~~~~ ActionView::Template::Error (undefined method `user_omniauth_callback_path' ~~~~ Signed-off-by: Dmitry Smirnov <onlyjob@member.fsf.org>