forked from jce-il/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0fe4e3
commit c930733
Showing
11 changed files
with
662 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
table, th, td { | ||
border: 1px solid black; | ||
} | ||
table { | ||
width: 100%; | ||
} | ||
|
||
th { | ||
height: 50px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
var config_module= (function () | ||
{ | ||
|
||
let config = | ||
{ | ||
apiKey: "AIzaSyBU9GCk3-4FVsBJp2Etpy2pmU2TTgR7U6c", | ||
authDomain: "test-9d3f7.firebaseapp.com", | ||
databaseURL: "https://test-9d3f7.firebaseio.com", | ||
storageBucket: "test-9d3f7.appspot.com", | ||
messagingSenderId: "692751540092" | ||
}; // API keys configuration | ||
let config_firebase = function() | ||
{ | ||
firebase.initializeApp(config);// sending API key to server for verification | ||
}; | ||
|
||
return { config_firebase, }; | ||
}()); | ||
config_module.config_firebase(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<!--jquery loading file--> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | ||
<!--END of jquery loading file--> | ||
|
||
<!--jsoncolor loading file--> | ||
<script src="../libs/jsoncolor/jscolor.min.js"></script> | ||
<!--END of jsoncolor loading file--> | ||
|
||
<!--Google Firebase API loading files--> | ||
<script src="https://www.gstatic.com/firebasejs/3.7.1/firebase-app.js"></script> | ||
<script src="https://www.gstatic.com/firebasejs/3.7.1/firebase-auth.js"></script> | ||
<script src="https://www.gstatic.com/firebasejs/3.7.1/firebase-database.js"></script> | ||
<!--END of Google Firebase API loading files--> | ||
|
||
<!--Loaded a personal script to combine API's as well as page design and logic initate--> | ||
<script src="config.js"></script> | ||
<script src="script.js"></script> | ||
<link rel='stylesheet' href='style.css' /> | ||
<!--END of Loaded a personal script to combine API's as well as page design and logic initate--> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.