in reply to Re: Getting issue with encrypt / decrypt
in thread Getting issue with encrypt / decrypt
#!/usr/bin/perl print "Content-type: text/html\n\n"; print "<html><head>\n"; print "<title>Change Pass</title>\n"; print '<body>'; print '<form action="pass_change.cgi" method="POST">'; print "Old Pass : ".'<input type="password" name="oldpass">'."<br>" +; print "New Pass : ".'<input type="password" name="newpass1">'."<br> +"; print "Confirm Pass: ".'<input type="password" name="newpass2">'."<br> +"; print '<input type="submit" name="sub" value="Change Pass">'; print '</body>'; print '</head>'; print '</html>';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Getting issue with encrypt / decrypt
by poj (Abbot) on Jul 23, 2015 at 19:10 UTC |