diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2022-04-27 12:48:26 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2022-04-27 12:48:26 -0400 |
commit | 6ae21577802462f38d98dd0e5415166008b1b13f (patch) | |
tree | 8d8606f15fe24af885b67d0cf30279c64bcd9e3e /captain/templates/forgot.html | |
parent | e5a2850b6bb9887b241316be24b3f7047cef6ea3 (diff) | |
download | levitating-6ae21577802462f38d98dd0e5415166008b1b13f.tar.gz levitating-6ae21577802462f38d98dd0e5415166008b1b13f.zip |
Started work on user-facing user stuff for web interface.
Diffstat (limited to 'captain/templates/forgot.html')
-rw-r--r-- | captain/templates/forgot.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/captain/templates/forgot.html b/captain/templates/forgot.html new file mode 100644 index 0000000..595cf9e --- /dev/null +++ b/captain/templates/forgot.html @@ -0,0 +1,11 @@ +{% extends index.html as contents %} + +<h2>Forgot Your Password?</h2> + +<p>Please enter the email address associated with the account below:</p> + +<form id='login' action='{{ base_url }}/forgot.html' method='get' accept-charset='UTF-8' > + <label for="email">Email Address:</label> + <input type="text" name="email" id="email" /> + <input type='submit' value="Reset" /> +</form> |