Change system > reset tab to tools

This commit is contained in:
billz 2023-10-31 17:52:17 +00:00
parent 15632a60df
commit 00792501fd
2 changed files with 2 additions and 23 deletions

View file

@ -96,10 +96,10 @@
<div class="modal-title" id="ModalLabel"><i class="fas fa-ambulance mr-2"></i><?php echo _("Generate debug log"); ?></div>
</div>
<div class="modal-body">
<div class="col-md-12 mb-3 mt-1" id="system-debug-message"><?php echo _("System debug log generation in progress..."); ?></div>
<div class="col-md-12 mb-3 mt-1" id="system-debug-message"><?php echo _("Debug log generation in progress..."); ?></div>
</div>
<div class="modal-footer">
<button type="button" data-message="<?php echo _("Close"); ?>" class="btn btn-outline-secondary" data-dismiss="modal"><?php echo _("Cancel"); ?></button>
<button type="button" data-message="<?php echo _("Close"); ?>" class="btn btn-outline-secondary" data-dismiss="modal"><?php echo _("Close"); ?></button>
</div>
</div>
</div>

View file

@ -1,21 +0,0 @@
<!-- reset tab -->
<div role="tabpanel" class="tab-pane" id="reset">
<h4 class="mt-3"><?php echo _("Restore settings") ;?></h4>
<?php if (!RASPI_MONITOR_ENABLED) : ?>
<?php echo CSRFTokenFieldTag() ?>
<div class="row">
<div class="form-group col-lg-8 col-md-8">
<label for="cbxhwmode">
<?php echo sprintf(_("To reset RaspAP to its <a href=\"%s\">initial configuration</a>, click or tap the button below."), "https://docs.raspap.com/defaults/"); ;?>
</label>
<?php getTooltip('Restores all access point (AP) service settings to their default values. This applies to hostapd, dhcpcd and dnsmasq.', 'tiphwmode', true); ?>
<div class="small">
<?php echo _("Custom files for optional components such as Ad Blocking, WireGuard or OpenVPN will remain on the system."); ?>
</div>
</div>
</div>
<button type="button" class="btn btn-danger" name="system-reset" data-toggle="modal" data-target="#system-confirm-reset" /><?php echo _("Perform reset"); ?></button>
<?php endif ?>
</div>