blob: 1c845b274101d30ffd8f5ccbe8f011cae338271e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!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>
<script src="../shared/jquery.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.1.0/firebase.js"></script>
<script src="../shared/firebaseConfig.js"></script>
<script src="../shared/Signup.js"></script>
</body>
</html>
|