change logic username field

This commit is contained in:
iBNu Maksum 2024-10-16 13:41:12 +07:00
parent ff4e620b75
commit 5ccb8520d3
No known key found for this signature in database
GPG Key ID: 7FC82848810579E5
6 changed files with 75 additions and 18 deletions

View File

@ -799,5 +799,8 @@
"To_download_from_private_paid_repository": "To download from private\/paid repository",
"Set_your_Github_Authentication_first": "Set your Github Authentication first",
"SMS_Notification": "SMS Notification",
"Customer_Registration_need_to_validate_using_OTP": "Customer Registration need to validate using OTP"
"Customer_Registration_need_to_validate_using_OTP": "Customer Registration need to validate using OTP",
"Registration_Username": "Registration Username",
"Registration": "Registration",
"For_Registration_and_Update_Phone_Number": "For Registration and Update Phone Number"
}

View File

@ -16,17 +16,28 @@
<form action="{$_url}login/activation" method="post">
<input type="hidden" name="csrf_token" value="{$csrf_token}">
<div class="form-group">
<label>{if $_c['country_code_phone']!= ''}{Lang::T('Phone Number')}{else}{Lang::T('Username')}{/if}</label>
<label>
{if $_c['registration_username'] == 'phone'}
{Lang::T('Phone Number')}
{elseif $_c['registration_username'] == 'email'}
{Lang::T('Email')}
{else}
{Lang::T('Username')}
{/if}
</label>
<div class="input-group">
{if $_c['country_code_phone']!= ''}
{if $_c['registration_username'] == 'phone'}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-phone-alt"></i></span>
{elseif $_c['registration_username'] == 'email'}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-envelope"></i></span>
{else}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-user"></i></span>
{/if}
<input type="text" class="form-control" name="username" required
placeholder="{if $_c['country_code_phone']!= ''}{$_c['country_code_phone']} {Lang::T('Phone Number')}{else}{Lang::T('Username')}{/if}">
<input type="text" class="form-control" name="username"
placeholder="{if $_c['country_code_phone']!= '' || $_c['registration_username'] == 'phone'}{$_c['country_code_phone']} {Lang::T('Phone Number')}{elseif $_c['registration_username'] == 'email'}{Lang::T('Email')}{else}{Lang::T('Username')}{/if}">
</div>
</div>
<div class="form-group">

View File

@ -20,19 +20,29 @@
<form action="{$_url}login/post" method="post">
<input type="hidden" name="csrf_token" value="{$csrf_token}">
<div class="form-group">
<label>{if $_c['country_code_phone']!= ''}{Lang::T('Phone Number')}{else}{Lang::T('Username')}{/if}</label>
<label>
{if $_c['registration_username'] == 'phone'}
{Lang::T('Phone Number')}
{elseif $_c['registration_username'] == 'email'}
{Lang::T('Email')}
{else}
{Lang::T('Username')}
{/if}
</label>
<div class="input-group">
{if $_c['country_code_phone']!= ''}
{if $_c['registration_username'] == 'phone'}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-phone-alt"></i></span>
{elseif $_c['registration_username'] == 'email'}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-envelope"></i></span>
{else}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-user"></i></span>
{/if}
<input type="text" class="form-control" name="username"
placeholder="{if $_c['country_code_phone']!= ''}{$_c['country_code_phone']} {Lang::T('Phone Number')}{else}{Lang::T('Username')}{/if}">
placeholder="{if $_c['country_code_phone']!= '' || $_c['registration_username'] == 'phone'}{$_c['country_code_phone']} {Lang::T('Phone Number')}{elseif $_c['registration_username'] == 'email'}{Lang::T('Email')}{else}{Lang::T('Username')}{/if}">
</div>
</div>
<div class="form-group">
<label>{Lang::T('Password')}</label>

View File

@ -17,17 +17,28 @@
<div class="panel-body">
<div class="form-container">
<div class="form-group">
<label>{if $_c['country_code_phone']!= ''}{Lang::T('Phone Number')}{else}{Lang::T('Username')}{/if}</label>
<label>
{if $_c['registration_username'] == 'phone'}
{Lang::T('Phone Number')}
{elseif $_c['registration_username'] == 'email'}
{Lang::T('Email')}
{else}
{Lang::T('Username')}
{/if}
</label>
<div class="input-group">
{if $_c['country_code_phone']!= ''}
{if $_c['registration_username'] == 'phone'}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-phone-alt"></i></span>
{elseif $_c['registration_username'] == 'email'}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-envelope"></i></span>
{else}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-user"></i></span>
{/if}
<input type="text" class="form-control" name="username" value="{$username}"
placeholder="{if $_c['country_code_phone']!= ''}{$_c['country_code_phone']} {Lang::T('Phone Number')}{else}{Lang::T('Username')}{/if}">
placeholder="{if $_c['country_code_phone']!= '' || $_c['registration_username'] == 'phone'}{$_c['country_code_phone']} {Lang::T('Phone Number')}{elseif $_c['registration_username'] == 'email'}{Lang::T('Email')}{else}{Lang::T('Username')}{/if}">
</div>
</div>
<div class="form-group">

View File

@ -19,17 +19,28 @@
<div class="panel-heading">1. {Lang::T('Register as Member')}</div>
<div class="panel-body">
<div class="form-group">
<label>{if $_c['country_code_phone']!= ''}{Lang::T('Phone Number')}{else}{Lang::T('Username')}{/if}</label>
<label>
{if $_c['registration_username'] == 'phone'}
{Lang::T('Phone Number')}
{elseif $_c['registration_username'] == 'email'}
{Lang::T('Email')}
{else}
{Lang::T('Username')}
{/if}
</label>
<div class="input-group">
{if $_c['country_code_phone']!= ''}
{if $_c['registration_username'] == 'phone'}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-phone-alt"></i></span>
{elseif $_c['registration_username'] == 'email'}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-envelope"></i></span>
{else}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-user"></i></span>
{/if}
<input type="text" class="form-control" name="username"
placeholder="{if $_c['country_code_phone']!= ''}{$_c['country_code_phone']} {Lang::T('Phone Number')}{else}{Lang::T('Username')}{/if}">
placeholder="{if $_c['country_code_phone']!= '' || $_c['registration_username'] == 'phone'}{$_c['country_code_phone']} {Lang::T('Phone Number')}{elseif $_c['registration_username'] == 'email'}{Lang::T('Email')}{else}{Lang::T('Username')}{/if}">
</div>
</div>
<div class="btn-group btn-group-justified mb15">

View File

@ -17,17 +17,28 @@
<div class="panel-body">
<div class="form-container">
<div class="md-input-container">
<label>{if $_c['country_code_phone']!= ''}{Lang::T('Phone Number')}{else}{Lang::T('Username')}{/if}</label>
<label>
{if $_c['registration_username'] == 'phone'}
{Lang::T('Phone Number')}
{elseif $_c['registration_username'] == 'email'}
{Lang::T('Email')}
{else}
{Lang::T('Username')}
{/if}
</label>
<div class="input-group">
{if $_c['country_code_phone']!= ''}
{if $_c['registration_username'] == 'phone'}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-phone-alt"></i></span>
{elseif $_c['registration_username'] == 'email'}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-envelope"></i></span>
{else}
<span class="input-group-addon" id="basic-addon1"><i
class="glyphicon glyphicon-user"></i></span>
{/if}
<input type="text" class="form-control" name="username"
placeholder="{if $_c['country_code_phone']!= ''}{$_c['country_code_phone']} {Lang::T('Phone Number')}{else}{Lang::T('Username')}{/if}">
placeholder="{if $_c['country_code_phone']!= '' || $_c['registration_username'] == 'phone'}{$_c['country_code_phone']} {Lang::T('Phone Number')}{elseif $_c['registration_username'] == 'email'}{Lang::T('Email')}{else}{Lang::T('Username')}{/if}">
</div>
</div>
<div class="md-input-container md-float-label">