Pages:Lost Password Page

From Whirlwind eCommerce Wiki
Revision as of 04:12, 5 November 2008 by 71.163.185.8 (Talk) (New page: The lost password feature will provide the web site visitor with a form to retrieve a lost password. Submission of this form will reset the password to a random 8 character value and email...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The lost password feature will provide the web site visitor with a form to retrieve a lost password. Submission of this form will reset the password to a random 8 character value and email this value to the emailAddress entered (assuming it is a valid account). The site must be set up to use an available SMTP server in order for the email to be sent. Verify with your integrator that the email server is correctly set up.

The lost password feature does not require a separate template. A simple template that outputs the global $message and the page $copy will serve to contain the lost password page. The following form must appear in the copy of the page:

Invalid language.

You need to specify a language like this: <source lang="html4strict">...</source>

Supported languages for syntax highlighting:

4cs, 6502acme, 6502kickass, 6502tasm, 68000devpac, abap, actionscript, actionscript3, ada, algol68, apache, applescript, apt_sources, arm, asm, asp, asymptote, autoconf, autohotkey, autoit, avisynth, awk, bascomavr, bash, basic4gl, bf, bibtex, blitzbasic, bnf, boo, c, c_loadrunner, c_mac, caddcl, cadlisp, cfdg, cfm, chaiscript, cil, clojure, cmake, cobol, coffeescript, cpp, cpp-qt, csharp, css, cuesheet, d, dcl, dcpu16, dcs, delphi, diff, div, dos, dot, e, ecmascript, eiffel, email, epc, erlang, euphoria, f1, falcon, fo, fortran, freebasic, freeswitch, fsharp, gambas, gdb, genero, genie, gettext, glsl, gml, gnuplot, go, groovy, gwbasic, haskell, haxe, hicest, hq9plus, html4strict, html5, icon, idl, ini, inno, intercal, io, j, java, java5, javascript, jquery, kixtart, klonec, klonecpp, latex, lb, ldif, lisp, llvm, locobasic, logtalk, lolcode, lotusformulas, lotusscript, lscript, lsl2, lua, m68k, magiksf, make, mapbasic, matlab, mirc, mmix, modula2, modula3, mpasm, mxml, mysql, nagios, netrexx, newlisp, nsis, oberon2, objc, objeck, ocaml, ocaml-brief, octave, oobas, oorexx, oracle11, oracle8, oxygene, oz, parasail, parigp, pascal, pcre, per, perl, perl6, pf, php, php-brief, pic16, pike, pixelbender, pli, plsql, postgresql, povray, powerbuilder, powershell, proftpd, progress, prolog, properties, providex, purebasic, pycon, pys60, python, q, qbasic, rails, rebol, reg, rexx, robots, rpmspec, rsplus, ruby, sas, scala, scheme, scilab, sdlbasic, smalltalk, smarty, spark, sparql, sql, stonescript, systemverilog, tcl, teraterm, text, thinbasic, tsql, typoscript, unicon, upc, urbi, uscript, vala, vb, vbnet, vedit, verilog, vhdl, vim, visualfoxpro, visualprolog, whitespace, whois, winbatch, xbasic, xml, xorg_conf, xpp, yaml, z80, zxbasic


<!-- start the form -->
<form action="index.php" method="post">

<!-- the emailAddress field to collect the user's account email address -->
Email Address: <input maxlength="100" name="emailAddress" size="40" type="text" />

<!-- submit the form -->
<input type="submit" value="Retrieve Lost Password">

<!-- required hidden fields -->

<!-- the fa field tells the system to attempt to retrieve a lost password when this form is submitted -->
<input name="fa" type="hidden" value="USER.lostPassword" /> 

<!-- the successPage field tells the system what page to 'land' the visitor on following the password request, 
so long as the request was successful -->
<input name="successPage" type="hidden" value="index.php?message=An email has been sent to your account with your new password" /> 

<!-- the failurePage field tells the system what page to 'land' the visitor on following the password request,
if the request fails. It is recommended to simply drop the visitor back into the current page with a message
about the failure -->
<input name="failurePage" type="hidden" value="index.php?message=Invalid account email address. Please try again or create a new account" />
<!-- close out the form -->
</form>