diff options
| author | sostler <sbostler@gmail.com> | 2010-04-29 03:11:35 -0400 |
|---|---|---|
| committer | sostler <sbostler@gmail.com> | 2010-04-29 03:11:35 -0400 |
| commit | 210d0294b59759c7cccd3d1f7408627cecc7f86a (patch) | |
| tree | 1fa9a192f66d4c78de0e268b56acec5a6ad6f37a /template/debug.st | |
| parent | 34869a3f8fb0ac6ed6c17db4a90e28c705829f0d (diff) | |
Password reset feature
Diffstat (limited to 'template/debug.st')
| -rw-r--r-- | template/debug.st | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/template/debug.st b/template/debug.st index c9bbcdb..bba203f 100644 --- a/template/debug.st +++ b/template/debug.st @@ -1,5 +1,4 @@ <html> - <head> <title>dump.fm DEBUG</title> $head()$ <style> @@ -17,7 +16,6 @@ width: 100px; } </style> - </head> <body> $banner()$ <div id="main"> @@ -47,7 +45,32 @@ <input type="submit" value="Send Email"> <input type="hidden" name="action" value="regemail"> <br> - <form/> + </form> + + <br><br><br><br> + + <form action="/debug" method="POST"> + <h1>Password Reset Email</h1> + <br> + <label>To:</label> + <input name="to" value="$user_email$"> + <br> + <label>Nick:</label> + <input name="nick" value="$user_nick$"> + <br> + <label>Template:</label> + <div> + $resettemps: { t | + <input type="radio" name="template" value="$t.template$" + $if(t.selected)$checked="checked"$endif$> $t.template$ + }$ + </div> + <br> + <input type="submit" value="Send Email"> + <input type="hidden" name="action" value="resetemail"> + <br> + </form> + </div> </body> </html> |
