diff options
author | FChannel <=> | 2021-01-22 21:12:26 -0800 |
---|---|---|
committer | FChannel <=> | 2021-01-22 21:12:26 -0800 |
commit | 2566e314e8351ffbceae9a2688d90a5c811d49e5 (patch) | |
tree | e802622593c540265e464beecf76696b65e229ed /static/verify.html | |
parent | 626fee35bacd68baf6e9bb38ca71d88fff700b13 (diff) |
client to server conversion
Diffstat (limited to 'static/verify.html')
-rw-r--r-- | static/verify.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/static/verify.html b/static/verify.html new file mode 100644 index 0000000..fb3fb3d --- /dev/null +++ b/static/verify.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <head> + </head> + <body> + <div style="width: 200px; margin: 0 auto;"> + <form action="/verify" method="post"> + <label>Identifier</label> + <input type="text" id="identifier" name="id" required><br> + <label>Code</label> + <input type="text" id="verify" name="code" required><br> + <input type="submit" value="Verify"> + </form> + </div> + </body> +</html> |