Current File : //usr/local/jetapps/var/www/jetbackup5/docroot/app/views/disasterRecovery/selection.htm |
<div ng-controller="disasterRecoverySelection" class="dr-items">
<div class="row">
<div class="col-xs-12" ng-show="newInstallation" style="text-align: center;">
<h3 style="font-size: 24px;">
<span class="fas fa-spin fa-circle-notch"></span>
{{lang.t("Please wait while initializing JetBackup")}}
</h3>
</div>
<div class="col-xs-8 col-xs-offset-2" ng-hide="newInstallation">
<button ng-click="freshInstallation()">
<em aria-hidden="true" class="fas fa-sign-out-alt"></em>
<span class="content">
<span class="title">{{ lang.t("New Installation") }}</span>
<span class="desc">{{ lang.t("Reset any existing JetBackup Configuration and start with the default JB Config") }}</span>
</span>
</button>
<button ng-click="startDR()">
<em aria-hidden="true" class="fas fa-life-ring"></em>
<span class="content">
<span class="title">{{ lang.t("Recover from Disaster") }}</span>
<span class="desc">{{ lang.t("Restore JetBackup configurations from backup and start disaster recovery wizard.") }}</span>
</span>
</button>
<button ng-click="exitDR()" ng-show="installed">
<em aria-hidden="true" class="fas fa-window-restore"></em>
<span class="content">
<span class="title">{{ lang.t("Exit DR") }}</span>
<span class="desc">{{ lang.t("Keep current JB configs.") }}</span>
</span>
</button>
</div>
</div>
</div>