blob: 248407c4a623a074f46db7802099c9eacf91c5f0 (
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 Login</h1>
Email: <input type="email" id="email" placeholder="email"><br><br>
Password: <input type="password" placeholder="password" id="password"><br><br>
<button id="login">Login</button><br><br>
<a href="signup">Not a user? Signup 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/Login.js"></script>
</body>
</html>
|