Mercurial > hg > bitsyauth
view example/persona.html @ 29:1bcb72011872
example/persona.html
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 26 Dec 2013 23:44:43 -0800 |
parents | 0f57029d663d |
children | 0bf52646061b |
line wrap: on
line source
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>bistyauth Mozilla persona test page</title> <!-- Suppressing Compatability Mode for IE https://developer.mozilla.org/en-US/Persona/Quick_Setup?redirectlocale=en-US&redirectslug=Persona%2FQuick_Setup#Suppressing_Compatibility_Mode --> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script> <script src="https://login.persona.org/include.js"></script> <script> function onload() { alert("page loaded!"); var signinLink = document.getElementById('signin'); if (signinLink) { signinLink.onclick = function() { navigator.id.request(); }; } var signoutLink = document.getElementById('signout'); if (signoutLink) { signoutLink.onclick = function() { navigator.id.logout(); }; } } </script> </head> <body onload="onload()"> <h1> <a href="https://login.persona.org/">Mozilla persona</a> <a href="http://k0s.org/hg/bitsyauth/">bitsyauth</a> test page </h1> <div> <a id="signin">sign in</a> </div> <h2>Resources</h2> <ul> <li> <a href="https://developer.mozilla.org/en-US/Persona/branding"> branding </a>: buttons and what not </li> </ul> </body> </html>