ADD:
Code: Select all
'SHOW_PASSWORD'=> 'Show password',
Search:
Code: Select all
<link href="{T_FONT_AWESOME_LINK}" rel="stylesheet">
Code: Select all
<script>
function togglePassword() {
var passwordInput = document.getElementById("password");
if (passwordInput.type === "password") {
passwordInput.type = "text";
} else {
passwordInput.type = "password";
}
}
</script>
Search:
Code: Select all
<input type="password" tabindex="2" id="password" name="password" size="25" class="inputbox autowidth" autocomplete="current-password" />
Code: Select all
<input type="checkbox" id="password" onclick="togglePassword()"><label for="showPassword">{L_SHOW_PASSWORD}</label>
Search:
Code: Select all
<label for="password"><span>{L_PASSWORD}{L_COLON}</span> <input type="password" tabindex="2" name="password" id="password" size="10" class="inputbox" title="{L_PASSWORD}" autocomplete="current-password" />
Code: Select all
<input type="checkbox" id="password" onclick="togglePassword()"><label for="showPassword">{L_SHOW_PASSWORD}</label>
Search:
Code: Select all
<!-- INCLUDE overall_header.html -->
Code: Select all
<script>
function togglePassword1() {
var passwordInput = document.getElementById("new_password");
if (passwordInput.type === "password") {
passwordInput.type = "text";
} else {
passwordInput.type = "password";
}
}
</script>
<script>
function togglePassword() {
var passwordInput = document.getElementById("password_confirm");
if (passwordInput.type === "password") {
passwordInput.type = "text";
} else {
passwordInput.type = "password";
}
}
</script>
Code: Select all
<input type="password" tabindex="2" name="new_password" id="new_password" size="25" value="{PASSWORD}" class="inputbox autowidth" title="{L_NEW_PASSWORD}" autocomplete="off" />
Code: Select all
<input type="checkbox" id="new_password" onclick="togglePassword1()">
<label for="showPassword">{L_SHOW_PASSWORD}</label>
Code: Select all
<input type="password" tabindex="3" name="password_confirm" id="password_confirm" size="25" value="{PASSWORD_CONFIRM}" class="inputbox autowidth" title="{L_CONFIRM_PASSWORD}" autocomplete="off" />
Code: Select all
<input type="checkbox" id="password_confirm" onclick="togglePassword()">
<label for="showPassword">{L_SHOW_PASSWORD}</label>
Search:
Code: Select all
<input type="password" tabindex="2" id="{PASSWORD_CREDENTIAL}" name="{PASSWORD_CREDENTIAL}" size="25" class="inputbox autowidth" autocomplete="current-password" />
Code: Select all
<input type="checkbox" id="password" onclick="togglePassword()"><label for="showPassword">{L_SHOW_PASSWORD}</label>
Don't forget to clear the cache