aboutsummaryrefslogtreecommitdiffstats
path: root/core/templates/login.php
Commit message (Collapse)AuthorAgeFilesLines
* Move away from OC_L10NRoeland Jago Douma2016-10-281-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* finish up layout of log in page, postpone forgot password link for laterJan-Christoph Borchardt2016-10-171-6/+0
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* update styles of log inJan-Christoph Borchardt2016-10-111-11/+19
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* fix log in button layoutJan-Christoph Borchardt2016-10-061-2/+3
|
* bring back dedicated log in button to make log in more usableJan-Christoph Borchardt2016-10-061-1/+3
|
* Add attribute “tabindex” to login form (fixes #1110)coderkun2016-08-311-5/+5
|
* Shake the login fields if password is wrongMorris Jobke2016-08-011-2/+2
|
* remove svg classesHendrik Leppelsack2016-07-011-1/+1
|
* Allow opening the password reset link in a new window when its a URLJoas Schilling2016-05-241-1/+1
|
* token based authChristoph Wurst2016-05-111-1/+1
| | | | | | | | * Add InvalidTokenException * add DefaultTokenMapper and use it to check if a auth token exists * create new token for the browser session if none exists hash stored token; save user agent * encrypt login password when creating the token
* Allow login by email addressThomas Müller2016-05-021-2/+2
|
* Rename `username` to `loginName`Lukas Reschke2016-04-151-1/+1
| | | | UID and login name are two different things.
* Move login form into controllerLukas Reschke2016-04-151-1/+1
| | | | First step on getting the authorisation stuff cleaned up. This is only for the login form, all other stuff is still where it is.
* Use proper shortcut methods in templatesMorris Jobke2016-04-061-1/+1
|
* core: Fix typos (found by codespell)Stefan Weil2016-04-041-1/+1
| | | Signed-off-by: Stefan Weil <sw@weilnetz.de>
* refactoring codeVincent Chan2016-02-101-4/+3
|
* Remember previous state of remember login checkboxVincent Chan2016-02-101-1/+6
| | | | fixes #22205
* Use \OCP\Util::sanitizeHTML instead of \OC_Util::sanitizeHTMLLukas Reschke2015-12-081-1/+1
|
* Remove password reset when the user can not change the passwordJoas Schilling2015-12-071-2/+6
|
* remove unneeded icons from input fields to not distract from submit button, ↵Jan-Christoph Borchardt2015-10-301-2/+0
| | | | fix #18940
* change wording from 'remember' to more understandable 'Stay logged in'Jan-Christoph Borchardt2015-10-231-1/+1
|
* Fix login arrow in login pageVincent Petry2015-09-291-1/+1
|
* fix loginHendrik Leppelsack2015-09-251-1/+1
|
* Merge pull request #18709 from owncloud/cleanup-login-semanticsThomas Müller2015-09-211-2/+1
|\ | | | | Pushes input inside the bottom group - login.
| * Squashing all commits in one, remove typos.Raghu Nayyar2015-09-121-2/+1
| |
* | use label:before instead of labelHendrik Leppelsack2015-09-161-2/+2
| |
* | Fixes white and black checkboxes in core, files will be next.Raghu Nayyar2015-09-161-1/+1
|/
* add title attribute for the login buttonChristoph Wurst2015-09-021-1/+1
|
* show feedback spinner for log in processJan-Christoph Borchardt2015-08-271-1/+2
|
* move log in button into fields and use icon instead of textJan-Christoph Borchardt2015-08-271-3/+6
|
* more understandable 'Wrong password' feedbackJan-Christoph Borchardt2015-08-121-2/+1
|
* Changed a p element by a div Brewal2015-06-081-2/+2
| | | A p element cannot contain a div element (here `<div style="clear: both;"></div>`). It should be change by a div element to fits standards.
* do not disclose information, show generic error on login pageJörn Friedrich Dreyer2015-04-101-0/+6
| | | | | | Conflicts: core/templates/login.php lib/base.php
* addressing #14982 self-closing tags ending slash doesn't have a purpose & ↵Volker E2015-03-171-6/+6
| | | | should be removed
* Allow custom error messages for the login pageRobin Appelman2015-01-221-0/+5
|
* use script instead of \OCP\Util methodsThomas Müller2014-12-161-5/+8
|
* move jstz to bower managementMorris Jobke2014-12-011-1/+1
|
* add missing alt attribute to spinnerJan-Christoph Borchardt2014-11-061-1/+2
|
* send browsers timezone back tp the server on loginThomas Müller2014-09-221-0/+2
|
* remove confusing 'automatic logon rejected' message, fix #8591Jan-Christoph Borchardt2014-08-091-8/+0
|
* BasicsVictor Dubiniuk2014-06-131-3/+3
|
* first step of infield label removal, fix login screenJan-Christoph Borchardt2014-06-031-9/+11
|
* Merge branch 'master' into csrf-on-login-and-logoutThomas Müller2014-05-191-1/+1
|\ | | | | | | | | Conflicts: core/templates/login.php
| * Disable login button until the timezone is setVincent Petry2014-05-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | On slow computers it might happen that the user manages to login before the timezone code has a chance to run, which then causes dates to appear wrong in the UI. This fix makes sure the login cannot happen until the timezone field is set. Note that it's not possible to run the timezone code outside of document.ready() because at that time the DOM element doesn't exist yet.
* | Add CSRF check on login and logoutLukas Reschke2014-05-041-0/+3
|/ | | | This is a minor issue and not worth a backport in my opinion as it could break more things than it's worth having it.
* Merge pull request #6870 from owncloud/uncheck-remember-checkboxJan-Christoph Borchardt2014-04-291-1/+1
|\ | | | | do not check 'remember' log in by default
| * do not check 'remember' log in by defaultJan-Christoph Borchardt2014-01-211-1/+1
| |
* | do not autocapitalize fields on mobile, fix user name input. Also disable ↵Jan-Christoph Borchardt2014-02-181-3/+5
|/ | | | autocorrect and specify autocomplete
* Fix resize issue for trash button in chrome and overflowing spinner in ↵Morris Jobke2013-11-281-0/+2
| | | | | | .update class fixes #6108
* improve encryption messageMorris Jobke2013-11-271-1/+1
|