diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-10-19 17:58:08 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-10-19 17:58:08 -0500 |
commit | 43a0e72c9955fd2900492530ab283d083b617ba8 (patch) | |
tree | f0786ff93d3f53b55cac5b67f33f48d2ee73734d /src/templates/sign-up.html | |
parent | c2a5c1a32a6a818ba4830112c5ac4e5992f14762 (diff) |
Add about and signup
Diffstat (limited to 'src/templates/sign-up.html')
-rw-r--r-- | src/templates/sign-up.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/templates/sign-up.html b/src/templates/sign-up.html new file mode 100644 index 0000000..81789bf --- /dev/null +++ b/src/templates/sign-up.html @@ -0,0 +1,23 @@ +<!doctype html> +<html lang="en"> + +<head> + <title>Sign Up</title> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <link rel="stylesheet" type="text/css" href="/css/styles.css"> +</head> + +<body> + <div> + <h1>Sign up!</h1> + <form method="post" action="/login/signup"> + <input name="username" type="text" placeholder="Enter Username" required> + <input type="password" placeholder="Enter Password" name="password" required> + <input type="text" placeholder="Secret code" name="code" required> + <input type="submit" vallue="Log in"> + </div> + </div> +</body> + +</html>
\ No newline at end of file |