destinations
1 year ago
modal
10 months ago
settings
3 days ago
404.htm
1 year ago
alerts.htm
1 year ago
backups.htm
1 year ago
dashboard.htm
1 year ago
destinations.htm
9 months ago
downloads.htm
1 year ago
jobs.htm
1 year ago
main.htm
1 year ago
mfa.htm
1 year ago
queue.htm
1 year ago
schedules.htm
1 year ago
settings.htm
1 year ago
system.htm
11 months ago
settings.htm
56 lines
| 1 | <div ng-controller="settings" class="jb-list-backups-container jb-grey-0"> |
| 2 | |
| 3 | <div class="row" navigation active="menuItem"></div> |
| 4 | |
| 5 | <div class="row rounded-4 jb-white-0 jb-panel-row shadow-lg"> |
| 6 | |
| 7 | <div class="jb-main-title rounded-3"> |
| 8 | {{ lang.t("Settings") }} |
| 9 | </div> |
| 10 | <div class="jb-title-description"> |
| 11 | <p> {{ lang.t("Customize your JetBackup Settings and Preferences to fit your needs and polices. Adjust configurations to optimize performance and ensure your backup process runs smoothly.") }}</p> |
| 12 | </div> |
| 13 | |
| 14 | <h2 class="nav-tab-wrapper"> |
| 15 | <ul> |
| 16 | <li class="nav-tab" ng-repeat="section in sections" ng-class="{ 'tab-current': currentSection._id == section._id }"> |
| 17 | <a href="" ng-click="changeSection(section)"> |
| 18 | <span>{{ section.name }}</span> |
| 19 | </a> |
| 20 | </li> |
| 21 | </ul> |
| 22 | </h2> |
| 23 | |
| 24 | <div class="snake-line" ng-class="{ 'loading': isLoadingSection }"></div> |
| 25 | |
| 26 | <!-- Section content --> |
| 27 | <div ng-if="!isLoadingSection"> |
| 28 | <div ng-include="sectionPage"></div> |
| 29 | </div> |
| 30 | |
| 31 | <div ng-if="isLoadingSection" class="jb-loading-screen"> |
| 32 | <p class="jb-loading-text"> |
| 33 | Loading<span class="jb-dots"><span></span><span></span><span></span></span> |
| 34 | </p> |
| 35 | </div> |
| 36 | |
| 37 | |
| 38 | <hr /> |
| 39 | <div class="d-flex justify-content-center mt-3"> |
| 40 | <div class="d-flex justify-content-center mt-3"> |
| 41 | <button |
| 42 | id="settings_save" |
| 43 | type="submit" |
| 44 | class="btn btn-primary apply_btn" |
| 45 | ng-click="ok()" |
| 46 | ng-show="!isLoadingSection" |
| 47 | ng-disabled="loading"> |
| 48 | <span class="spinner-border spinner-border-sm me-2" role="status" aria-hidden="true" ng-show="loading"></span> |
| 49 | {{ lang.t("Save") }} |
| 50 | </button> |
| 51 | </div> |
| 52 | </div> |
| 53 | |
| 54 | </div> |
| 55 | |
| 56 | </div> |