diff options
author | Matt Singleton <matt@xcolour.net> | 2022-01-16 21:45:30 -0600 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2022-01-16 21:53:09 -0600 |
commit | 704be7d2e7db33635fc9de684c8b3916cd798c68 (patch) | |
tree | 188ad6c77eec042809f963fcc52100c649a5967a /input_template.html | |
parent | 1ef62c2c3044b5b11dae92a08be5d83a780392b4 (diff) |
support input forms
Diffstat (limited to 'input_template.html')
-rw-r--r-- | input_template.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/input_template.html b/input_template.html new file mode 100644 index 0000000..defbb7a --- /dev/null +++ b/input_template.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html lang="en"> + <html> + <head> + <meta charset="$charset"/> + <style type="text/css"> +$css + </style> + </head> + <body> + <form action="" method="get"> + <label for="input">$meta</label> + <input type="text" name="__client_internal_input" id="input" required> + <input type="submit"> + </body> + </html> |