mirror of
https://github.com/sismics/docs.git
synced 2024-11-22 05:57:57 +01:00
Closes #268: test TOTP after activation
This commit is contained in:
parent
c6eb1c813c
commit
822a4ae776
@ -11,7 +11,7 @@ angular.module('docs').controller('SettingsSecurity', function($scope, User, $di
|
||||
/**
|
||||
* Enable TOTP.
|
||||
*/
|
||||
$scope.enableTotp = function() {
|
||||
$scope.enableTotp = function () {
|
||||
var title = $translate.instant('settings.security.enable_totp');
|
||||
var msg = $translate.instant('settings.security.enable_totp_message');
|
||||
var btns = [
|
||||
@ -34,7 +34,7 @@ angular.module('docs').controller('SettingsSecurity', function($scope, User, $di
|
||||
/**
|
||||
* Disable TOTP.
|
||||
*/
|
||||
$scope.disableTotp = function() {
|
||||
$scope.disableTotp = function () {
|
||||
$uibModal.open({
|
||||
templateUrl: 'partial/docs/settings.security.disabletotp.html',
|
||||
controller: 'SettingsSecurityModalDisableTotp'
|
||||
@ -53,4 +53,18 @@ angular.module('docs').controller('SettingsSecurity', function($scope, User, $di
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Test TOTP.
|
||||
*/
|
||||
$scope.testValidationCodeSuccess = null;
|
||||
$scope.testTotp = function (code) {
|
||||
Restangular.one('user/test_totp').post('', {
|
||||
code: code
|
||||
}).then(function() {
|
||||
$scope.testValidationCodeSuccess = true;
|
||||
}, function () {
|
||||
$scope.testValidationCodeSuccess = false;
|
||||
});
|
||||
};
|
||||
});
|
@ -347,7 +347,10 @@
|
||||
"message": "Your account will not be protected by the two-factor authentication anymore.",
|
||||
"confirm_password": "Confirm your password",
|
||||
"submit": "Disable two-factor authentication"
|
||||
}
|
||||
},
|
||||
"test_totp": "Please enter the validation code displayed on your phone :",
|
||||
"test_code_success": "Validation code OK",
|
||||
"test_code_fail": "This code is not valid, please double check that your phone is properly configured or disable Two-factor authentication"
|
||||
},
|
||||
"group": {
|
||||
"title": "Groups management",
|
||||
|
@ -19,13 +19,27 @@
|
||||
</div>
|
||||
|
||||
<div ng-if="user.totp_enabled">
|
||||
<div ng-if="secret">
|
||||
<div class="row mt-30 mb-19" ng-if="secret">
|
||||
<div class="col-sm-3">
|
||||
<p translate="settings.security.secret_key" translate-values="{ secret: secret }"></p>
|
||||
<qrcode data="otpauth://totp/Sismics%20Docs?secret={{ secret }}" size="200"></qrcode>
|
||||
<p class="text-danger">
|
||||
<strong>{{ 'settings.security.secret_key_warning' | translate }}</strong>
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<p class="mt-30"><strong>{{ 'settings.security.test_totp' | translate }}</strong></p>
|
||||
<form class="form-inline">
|
||||
<input type="text" class="form-control" ng-model="testValidationCode" />
|
||||
<button class="btn btn-primary" ng-click="testTotp(testValidationCode)">{{ 'ok' | translate }}</button>
|
||||
</form>
|
||||
<p class="mt-10" ng-if="testValidationCodeSuccess != null"
|
||||
ng-class="{ 'text-success': testValidationCodeSuccess, 'text-danger': !testValidationCodeSuccess }">
|
||||
<strong ng-if="testValidationCodeSuccess">{{ 'settings.security.test_code_success' | translate }}</strong>
|
||||
<strong ng-if="!testValidationCodeSuccess">{{ 'settings.security.test_code_fail' | translate }}</strong>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<p translate="settings.security.totp_enabled_message" translate-values="{ appName: appName }"></p>
|
||||
<p>
|
||||
<button class="btn btn-warning" ng-click="disableTotp()">{{ 'settings.security.disable_totp' | translate }}</button>
|
||||
|
Loading…
Reference in New Issue
Block a user