add code to fetch existing backups

This commit is contained in:
usmannasir
2025-04-13 14:12:02 +05:00
parent 5e42f53d3c
commit 3e4017b593
2 changed files with 2 additions and 3 deletions

View File

@@ -11,7 +11,6 @@ app.controller('backupPlanNowOneClick', function($scope, $http) {
$scope.showEmailVerification = function() {
console.log('showEmailVerification called');
$scope.showVerification = true;
$scope.$apply();
};
$scope.cancelVerification = function() {

View File

@@ -53,14 +53,14 @@
<div class="form-group">
<label class="col-sm-3 control-label">{% trans "Email Address" %}</label>
<div class="col-sm-6">
<input type="email" class="form-control" ng-model="verificationEmail" required>
<input type="email" class="form-control" ng-model="verificationEmail" required style="position: relative; z-index: 9999; pointer-events: auto;">
</div>
</div>
<div class="form-group" ng-show="verificationCodeSent">
<label class="col-sm-3 control-label">{% trans "Verification Code" %}</label>
<div class="col-sm-6">
<input type="text" class="form-control" ng-model="verificationCode" required>
<input type="text" class="form-control" ng-model="verificationCode" required style="position: relative; z-index: 9999; pointer-events: auto;">
</div>
</div>