diff options
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> |
