diff options
| -rw-r--r-- | signup/index.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/signup/index.html b/signup/index.html new file mode 100644 index 0000000..7fbd49b --- /dev/null +++ b/signup/index.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>Firebase ECommerce Solution</title> +</head> +<body> + <h1>ECommerce Signup</h1> + Email: <input type="email" id="email" placeholder="email"><br><br> + Password: <input type="password" placeholder="password" id="password"><br><br> + <button id="login">Signup</button><br><br> + <a href="../">Already a user? Login Now!</a> +</body> +</html>
\ No newline at end of file |
