diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-05-12 09:19:59 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-05-12 09:19:59 -0400 |
commit | 738833d70c8d6cca3bbf9efe0c8dd24ed0395dde (patch) | |
tree | 2b7a565b3a9753f9aa78defcbe2ba57805d51ee7 /captain/templates/redirect.html | |
parent | a213818a689e41df697d1b2baf6864fc62859fdb (diff) | |
download | levitating-738833d70c8d6cca3bbf9efe0c8dd24ed0395dde.tar.gz levitating-738833d70c8d6cca3bbf9efe0c8dd24ed0395dde.zip |
Added post handling to the captain. Improved the query utilities for extracting values from a query string. Added a redirect template for html.
Diffstat (limited to 'captain/templates/redirect.html')
-rw-r--r-- | captain/templates/redirect.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/captain/templates/redirect.html b/captain/templates/redirect.html new file mode 100644 index 0000000..dec695f --- /dev/null +++ b/captain/templates/redirect.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <meta http-equiv="Refresh" content="0; url='{{ base_url }}/{{ destination }}'" /> + <title>Command Received</title> + </head> + <body> + </body> +</html> |