Last active
December 30, 2015 13:38
-
-
Save keshavsaharia/7836543 to your computer and use it in GitHub Desktop.
Basic HTML starter page with Bootstrap, Font Awesome, and Firebase, for the students of TechLab learning about web development.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
<script type="text/javascript" src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> | |
<script type="text/javascript" src="http://cdn.firebase.com/v0/firebase.js"></script> | |
<script type="text/javascript" src="https://cdn.firebase.com/js/simple-login/1.4.1/firebase-simple-login.js"></script> | |
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"> | |
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> | |
<style> | |
</style> | |
<script type="text/javascript"> | |
var firebase = new Firebase("https://your-firebase-name.firebaseio.com"); | |
var firebaseLogin = new FirebaseSimpleLogin(firebase, onLogin); | |
// setup function | |
function setup() { | |
} | |
function onLogin(error, user) { | |
if (error) { | |
// Handle the login error. | |
} | |
else if (user) { | |
// Handle the successfully logged in user. | |
console.log(user.provider + " - " + user.id); | |
} | |
else { | |
// Handle logged out user. | |
} | |
} | |
// Run the setup function when the document is loaded. | |
$(document).ready( setup ); | |
</script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment