Update app-miscellaneous.tpl

fix not responsive on mobile
This commit is contained in:
Focuslinkstech 2024-11-06 17:32:59 +01:00
parent 56ddf65fdf
commit 8dcd00bc6b

View File

@ -1,7 +1,5 @@
{include file="sections/header.tpl"} {include file="sections/header.tpl"}
<form class="form-horizontal" method="post" role="form" action="" enctype="multipart/form-data"> <form class="form-horizontal" method="post" role="form" action="" enctype="multipart/form-data">
<input type="hidden" name="csrf_token" value="{$csrf_token}">
<div class="row"> <div class="row">
<div class="col-sm-12 col-md-12"> <div class="col-sm-12 col-md-12">
<div class="panel panel-primary panel-hovered panel-stacked mb30"> <div class="panel panel-primary panel-hovered panel-stacked mb30">
@ -12,14 +10,18 @@
</div> </div>
{Lang::T('Miscellaneous')} {Lang::T('Miscellaneous')}
</div> </div>
<div class="panel-body">
<input type="hidden" name="csrf_token" value="{$csrf_token}">
<div class="form-group"> <div class="form-group">
<label class="col-md-3 control-label">{Lang::T('New Version Notification')}</label> <label class="col-md-3 control-label">{Lang::T('New Version Notification')}</label>
<div class="col-md-5"> <div class="col-md-5">
<select name="new_version_notify" id="new_version_notify" class="form-control"> <select name="new_version_notify" id="new_version_notify" class="form-control">
<option value="enable" {if $_c['new_version_notify']=='enable' }selected="selected" {/if}> <option value="enable" {if $_c['new_version_notify']=='enable' }selected="selected"
{/if}>
{Lang::T('Enabled')} {Lang::T('Enabled')}
</option> </option>
<option value="disable" {if $_c['new_version_notify']=='disable' }selected="selected" {/if}> <option value="disable" {if $_c['new_version_notify']=='disable' }selected="selected"
{/if}>
{Lang::T('Disabled')} {Lang::T('Disabled')}
</option> </option>
</select> </select>
@ -42,8 +44,10 @@
</select> </select>
</div> </div>
<p class="help-block col-md-4"><small> <p class="help-block col-md-4"><small>
{Lang::T('If enabled, the system will notify Admin when router goes Offline, If admin {Lang::T('If enabled, the system will notify Admin when router goes Offline,
have 10 or more router and many customers, it will get overlapping, you can disabled')} If admin
have 10 or more router and many customers, it will get overlapping, you can
disabled')}
</small> </small>
</p> </p>
</div> </div>
@ -59,7 +63,8 @@
</select> </select>
</div> </div>
<p class="help-block col-md-4"><small> <p class="help-block col-md-4"><small>
{Lang::T('OTP is required when user want to change phone number and registration')}</small> {Lang::T('OTP is required when user want to change phone number and
registration')}</small>
</p> </p>
</div> </div>
<div class="form-group"> <div class="form-group">
@ -68,14 +73,16 @@
<select name="phone_otp_type" id="phone_otp_type" class="form-control"> <select name="phone_otp_type" id="phone_otp_type" class="form-control">
<option value="sms" {if $_c['phone_otp_type']=='sms' }selected="selected" {/if}> <option value="sms" {if $_c['phone_otp_type']=='sms' }selected="selected" {/if}>
{Lang::T('By SMS')} {Lang::T('By SMS')}
<option value="whatsapp" {if $_c['phone_otp_type']=='whatsapp' }selected="selected" {/if}> <option value="whatsapp" {if $_c['phone_otp_type']=='whatsapp' }selected="selected"
{/if}>
{Lang::T('by WhatsApp')} {Lang::T('by WhatsApp')}
<option value="both" {if $_c['phone_otp_type']=='both' }selected="selected" {/if}> <option value="both" {if $_c['phone_otp_type']=='both' }selected="selected" {/if}>
{Lang::T('By WhatsApp and SMS')} {Lang::T('By WhatsApp and SMS')}
</option> </option>
</select> </select>
</div> </div>
<p class="help-block col-md-4"><small>{Lang::T('The method which OTP will be sent to user')}<br> <p class="help-block col-md-4"><small>{Lang::T('The method which OTP will be sent to
user')}<br>
{Lang::T('For Registration and Update Phone Number')}</small></p> {Lang::T('For Registration and Update Phone Number')}</small></p>
</div> </div>
<div class="form-group"> <div class="form-group">
@ -120,7 +127,8 @@
</select> </select>
</div> </div>
<p class="help-block col-md-4"><small> <p class="help-block col-md-4"><small>
{Lang::T('Hotspot Authentication Method. Make sure you have changed your hotspot login {Lang::T('Hotspot Authentication Method. Make sure you have changed your
hotspot login
page.')}<br><a href="https://github.com/agstrxyz/phpnuxbill-login-hotspot" page.')}<br><a href="https://github.com/agstrxyz/phpnuxbill-login-hotspot"
target="_blank">Download target="_blank">Download
phpnuxbill-login-hotspot</a></small> phpnuxbill-login-hotspot</a></small>
@ -153,11 +161,13 @@
</select> </select>
</div> </div>
<p class="help-block col-md-4"> <p class="help-block col-md-4">
<small> {Lang::T('If user buy same internet plan, expiry date will extend')}</small> <small> {Lang::T('If user buy same internet plan, expiry date will
extend')}</small>
</p> </p>
</div> </div>
<div class="form-group has-error"> <div class="form-group has-error">
<label class="col-md-3 control-label">{Lang::T('Allow Balance custom amount')}</label> <label class="col-md-3 control-label">{Lang::T('Allow Balance custom
amount')}</label>
<div class="col-md-5"> <div class="col-md-5">
<select name="allow_balance_custom" id="allow_balance_custom" class="form-control"> <select name="allow_balance_custom" id="allow_balance_custom" class="form-control">
<option value="no"> <option value="no">
@ -186,4 +196,5 @@
</div> </div>
</div> </div>
</form> </form>
{include file="sections/footer.tpl"} {include file="sections/footer.tpl"}