PHP Classes

File: safe_password_template.html

Recommend this page to a friend!
  Classes of Suman Debnath   Password Checker   safe_password_template.html   Download  
File: safe_password_template.html
Role: Auxiliary data
Content type: text/plain
Description: Template file for example.php
Class: Password Checker
Generate and test safe passwords
Author: By
Last change: Changed the listing priority.
Date: 18 years ago
Size: 1,913 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Safe Password Example</title> </head> <body> <a href="###GEN_PASSWORD###">Generate Password</a><br> <br> <form action="###FORM_ACTION###" method="post"> <table width="100%"> <tbody> <tr> <td width="15%">Name:</td> <td><input name="username" value="###FORM_USER###" type="text"></td> </tr> <tr> <td>Password:</td> <td><input name="password" value="###FORM_PASSWORD###" type="text"></td> </tr> <tr> <td>&nbsp;</td> <td><input name="submit" value="Submit" type="submit"></td> </tr> <tr> <td colspan="2"><FONT color="Red">###FORM_MSG###</FONT></td> </tr> <tr> <td colspan="2"><input name="D" value="D" type="checkbox">&nbsp;&nbsp;Dictionary Check</td> </tr> <tr> <td colspan="2"><input name="L" value="L" type="checkbox">&nbsp;&nbsp;Length Check</td> </tr> <tr> <td colspan="2"><input name="H" value="H" type="checkbox">&nbsp;&nbsp;Heterogeneity Check</td> </tr> <tr> <td colspan="2"><input name="W" value="W" type="checkbox">&nbsp;&nbsp;Blacklisted Word Check</td> </tr> <tr> <td colspan="2"><input name="C" value="C" type="checkbox">&nbsp;&nbsp;Blacklisted CharacterCheck</td> </tr> <tr> <td colspan="2">&nbsp;</td> </tr> <tr> <td colspan="2"><input name="P" value="P" type="checkbox">&nbsp;&nbsp;Phonetic Check</td> </tr> <tr> <td colspan="2"><input name="T" value="T" type="checkbox">&nbsp;&nbsp;Similarity Check</td> </tr> <tr> <td colspan="2"><input name="S" value="S" type="checkbox">&nbsp;&nbsp;Superset/Subset Check</td> </tr> </tbody> </table> </form> </body> </html>