mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-01-28 19:39:40 +00:00
73 lines
2.9 KiB
Smarty
73 lines
2.9 KiB
Smarty
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
|
<!-- Password Security Settings -->
|
|
<tr>
|
|
<th align="left" scope="row" colspan="3"><h4>{$MOD.LBL_PWDSEC_SETS}</h4></th>
|
|
</tr>
|
|
|
|
<!-- Password Min Length -->
|
|
<tr>
|
|
<td width="25%" scope="row" valign="middle">
|
|
{$MOD.LBL_PWDSEC_MIN_LENGTH}
|
|
{sugar_help text=$MOD.LBL_PWDSEC_MIN_LENGTH_DESC}
|
|
</td>
|
|
<td valign="middle">
|
|
<input name="passwordsetting_minpwdlength" id="passwordsetting_minpwdlength" type="number" value="{$config.passwordsetting.minpwdlength}">
|
|
{$MOD.LBL_PWDSEC_CHARS}
|
|
</td>
|
|
<td> </td><td> </td>
|
|
</tr>
|
|
|
|
<!-- Password should contains uppercase characters -->
|
|
<tr>
|
|
<td width="25%" scope="row" valign="middle">
|
|
{$MOD.LBL_PWDSEC_UPPERCASE}
|
|
{sugar_help text=$MOD.LBL_PWDSEC_UPPERCASE_DESC}
|
|
</td>
|
|
<td valign="middle">
|
|
<input type="hidden" name="passwordsetting_oneupper" value="0">
|
|
<input name="passwordsetting_oneupper" id="passwordsetting_oneupper" type="checkbox" {if $config.passwordsetting.oneupper}checked="checked"{/if} value="1">
|
|
</td>
|
|
<td> </td><td> </td>
|
|
</tr>
|
|
|
|
<!-- Password should contains lowercase characters -->
|
|
<tr>
|
|
<td width="25%" scope="row" valign="middle">
|
|
{$MOD.LBL_PWDSEC_LOWERCASE}
|
|
{sugar_help text=$MOD.LBL_PWDSEC_LOWERCASE_DESC}
|
|
</td>
|
|
<td valign="middle">
|
|
<input type="hidden" name="passwordsetting_onelower" value="0">
|
|
<input name="passwordsetting_onelower" id="passwordsetting_onelower" type="checkbox" {if $config.passwordsetting.onelower}checked="checked"{/if} value="1">
|
|
</td>
|
|
<td> </td><td> </td>
|
|
</tr>
|
|
|
|
<!-- Password should contains numbers -->
|
|
<tr>
|
|
<td width="25%" scope="row" valign="middle">
|
|
{$MOD.LBL_PWDSEC_NUMBERS}
|
|
{sugar_help text=$MOD.LBL_PWDSEC_NUMBERS_DESC}
|
|
</td>
|
|
<td valign="middle">
|
|
<input type="hidden" name="passwordsetting_onenumber" value="0">
|
|
<input name="passwordsetting_onenumber" id="passwordsetting_onenumber" type="checkbox" {if $config.passwordsetting.onenumber}checked="checked"{/if} value="1">
|
|
</td>
|
|
<td> </td><td> </td>
|
|
</tr>
|
|
|
|
<!-- Password should contains special characters -->
|
|
<tr>
|
|
<td width="25%" scope="row" valign="middle">
|
|
{$MOD.LBL_PWDSEC_SPECCHAR}
|
|
{sugar_help text=$MOD.LBL_PWDSEC_SPECCHAR_DESC}
|
|
</td>
|
|
<td valign="middle">
|
|
<input type="hidden" name="passwordsetting_onespecial" value="0">
|
|
<input name="passwordsetting_onespecial" id="passwordsetting_onespecial" type="checkbox" {if $config.passwordsetting.onespecial}checked="checked"{/if} value="1">
|
|
</td>
|
|
<td> </td><td> </td>
|
|
</tr>
|
|
|
|
</table>
|