summaryrefslogtreecommitdiff
path: root/app/views/u2f
Commit message (Collapse)AuthorAgeFilesLines
* Ignore InlineJavaScript linter in existing script tag locations.winh-inline-script-linterConnor Shea2018-02-282-0/+2
|
* Tweak column widths on two factor warning messagesJedidiah2017-09-081-6/+6
|
* Inline script cleanup globals and easyTim Zallmann2017-08-011-4/+0
|
* Fixed rspec testsJose Ivan Vargas2017-04-061-1/+1
|
* Corrected capitalizacion on various sectionsJose Ivan Vargas2017-04-061-2/+2
|
* HAMLLint: Fix `ImplicitDiv` offencesKushal Pandya2016-12-311-1/+1
|
* Improved the u2f flow18556-polish-up-the-u2f-flowLuke "Jared" Bennett2016-12-271-13/+4
| | | | Added tests
* Display error code for U2F errors (!7305)winniehell2016-11-072-2/+2
|
* Make UX upgrades to SignIn/Register views.Bryce Johnson2016-10-151-1/+1
| | | | | | | - Tab between register and sign in forms - Add individual input validation error messages - Validate username - Update many styles for all login-box forms
* Pass the remember_me option into the u2f form and support it while ↵add-remember-option-u2fDJ Mountney2016-09-011-0/+2
| | | | | | authenticating Matches the changes done for non-u2f two-factor auth
* Address review comments from @smcgivern.17334-u2f-device-identifiersTimothy Andrew2016-08-181-8/+9
| | | | | | | | 1. Remove an unnecessary (since we're fetching all the records anyway) `pluck` while fetching U2F registration records. 2. Align "Your device was successfully set up!" section with the "U2F Devices" table below.
* Allow naming U2F devices.Timothy Andrew2016-08-181-3/+7
| | | | | | | | 1. Display a list of U2F devices on the `two_factor_auth` page. 2. Allow deleting individual U2F devices. 3. Allow setting a (optional) name for a device (during registration).
* Don't allow clicking on "Setup New U2F Device" unless an authenticator app ↵Timothy Andrew2016-06-151-5/+12
| | | | | | | has been set up. - Also change the help message to indicate that an authenticator app is now a prerequisite for U2F.
* Implement authentication (login) using a U2F device.Timothy Andrew2016-06-061-0/+28
| | | | | | - Move the `authenticate_with_two_factor` method from `ApplicationController` to the `AuthenticatesWithTwoFactor` module, where it should be.
* Implement U2F registration.Timothy Andrew2016-06-061-0/+31
- Move the `TwoFactorAuthsController`'s `new` action to `show`, since the page is not used to create a single "two factor auth" anymore. We can have a single 2FA authenticator app, along with any number of U2F devices, in any combination, so the page will be accessed after the first "two factor auth" is created. - Add the `u2f` javascript library, which provides an API to the browser's U2F implementation. - Add tests for the JS components