diff options
| author | Kumar Priyansh <[email protected]> | 2019-06-09 06:49:52 +0530 |
|---|---|---|
| committer | Kumar Priyansh <[email protected]> | 2019-06-09 06:49:52 +0530 |
| commit | e87e94c5ed06bf91183574272b6264e9d582b734 (patch) | |
| tree | bc8c0b431a7e723e5d65a6429aac0387c3058f07 | |
| parent | d8ac635db024903e0cd9871fb08f49de7f90f5b9 (diff) | |
| download | firebase-ecommerce-e87e94c5ed06bf91183574272b6264e9d582b734.tar.xz firebase-ecommerce-e87e94c5ed06bf91183574272b6264e9d582b734.zip | |
Deleted Dashboard and Signup Flders
| -rw-r--r-- | dashboard/cart/index.html | 83 | ||||
| -rw-r--r-- | dashboard/index.html | 21 | ||||
| -rw-r--r-- | signup/index.html | 70 |
3 files changed, 0 insertions, 174 deletions
diff --git a/dashboard/cart/index.html b/dashboard/cart/index.html deleted file mode 100644 index fa54f44..0000000 --- a/dashboard/cart/index.html +++ /dev/null @@ -1,83 +0,0 @@ -<!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><style> - #snackbar { - visibility: hidden; - min-width: 250px; - background-color: rgb(231, 81, 81); - color: #fff; - text-align: center; - border-radius: 2px; - padding: 16px; - position: fixed; - z-index: 1; - top: 30px; - right:30px; - } - #snackbar.show { - visibility: visible; - -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s; - animation: fadein 0.5s, fadeout 0.5s 2.5s; - } - @-webkit-keyframes fadein { - from {opacity: 0;} - to { opacity: 1;} - } - - @keyframes fadein { - from { opacity: 0;} - to { opacity: 1;} - } - - @-webkit-keyframes fadeout { - from {opacity: 1;} - to {opacity: 0;} - } - - @keyframes fadeout { - from {opacity: 1;} - to {opacity: 0;} - } - .middle { - margin: 0 auto; - width: 50%; - justify-content: center; - justify-items: center; - align-content: center; - align-items: center; - } - #signout { - position: absolute; - top: 25px; - right: 25px; - } - #cart { - position: absolute; - top: 25px; - right: 105px; - } - #loader { - margin-top: 50px; - } - tr, th, td { - padding: 10px; - border: solid 1px black; - } - </style> -</head> -<body> - <div id="snackbar">Some text some message..</div> - <h2 class="title">Firebase ECommerce</h2> - <button id="cart">View Dashboard</button> - <button id="signout">Signout</button> - <div id="loader">Loading Cart ...</div> - <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/cart.js"></script> -</body> -</html>
\ No newline at end of file diff --git a/dashboard/index.html b/dashboard/index.html deleted file mode 100644 index efe0d36..0000000 --- a/dashboard/index.html +++ /dev/null @@ -1,21 +0,0 @@ -<!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> - <link rel="stylesheet" href="../shared/css/dashboard.css"> -</head> -<body> - <div id="snackbar">Some text some message..</div> - <h2 class="title">Firebase ECommerce</h2> - <button id="cart">View Cart</button> - <button id="signout">Signout</button> - <div id="loader"></div> - <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/Dashboard.js"></script> -</body> -</html>
\ No newline at end of file diff --git a/signup/index.html b/signup/index.html deleted file mode 100644 index a21b598..0000000 --- a/signup/index.html +++ /dev/null @@ -1,70 +0,0 @@ -<!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> - <style> - #snackbar { - visibility: hidden; - min-width: 250px; - background-color: rgb(231, 81, 81); - color: #fff; - text-align: center; - border-radius: 2px; - padding: 16px; - position: fixed; - z-index: 1; - top: 30px; - right:30px; - } - #snackbar.show { - visibility: visible; - -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s; - animation: fadein 0.5s, fadeout 0.5s 2.5s; - } - @-webkit-keyframes fadein { - from {opacity: 0;} - to { opacity: 1;} - } - - @keyframes fadein { - from { opacity: 0;} - to { opacity: 1;} - } - - @-webkit-keyframes fadeout { - from {opacity: 1;} - to {opacity: 0;} - } - - @keyframes fadeout { - from {opacity: 1;} - to {opacity: 0;} - } - .middle { - margin: 0 auto; - width: 50%; - justify-content: center; - justify-items: center; - align-content: center; - align-items: center; - } - </style> -</head> -<body> - <div id="snackbar">Some text some message..</div> - <div class="middle"> - <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="signup">Signup</button><br><br> - <a href="../">Already a user? Login Now!</a> - </div> - <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>
\ No newline at end of file |
