12 lines
546 B
PHP
12 lines
546 B
PHP
<?php
|
|
function printPasswordStrenght(){
|
|
$def_tl_img="res/images/traffic_lights_grey.png";
|
|
?>
|
|
<div id="misuratore_password" class="homebox">
|
|
<img id="traffic_lights_red" src="<?=$def_tl_img?>" alt="<?php _("Dumb Password")?>" title="<?php _("Dumb Password")?>">
|
|
<img id="traffic_lights_yellow" src="<?=$def_tl_img?>" alt="<?php _("Accettable Password")?>" title="<?php _("Accettable Password")?>">
|
|
<img id="traffic_lights_green" src="<?=$def_tl_img?>" alt="<?php _("Good Password")?>" title="<?php _("Good Password")?>">
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|