strenght_box.php 546 B

123456789101112
  1. <?php
  2. function printPasswordStrenght(){
  3. $def_tl_img="res/images/traffic_lights_grey.png";
  4. ?>
  5. <div id="misuratore_password" class="homebox">
  6. <img id="traffic_lights_red" src="<?=$def_tl_img?>" alt="<?php _("Dumb Password")?>" title="<?php _("Dumb Password")?>">
  7. <img id="traffic_lights_yellow" src="<?=$def_tl_img?>" alt="<?php _("Accettable Password")?>" title="<?php _("Accettable Password")?>">
  8. <img id="traffic_lights_green" src="<?=$def_tl_img?>" alt="<?php _("Good Password")?>" title="<?php _("Good Password")?>">
  9. </div>
  10. <?php
  11. }
  12. ?>