Addressed issue #1134

This commit is contained in:
Jeffrey D 2014-07-29 20:42:28 -05:00
parent f6618c7638
commit 3c48bf8935
11 changed files with 52 additions and 52 deletions

View file

@ -12,15 +12,15 @@
var $CURRENT_USER = {{ g.user|tojson }};
</script>
<script src="{{ url_for('static', filename='persona.js') }}"></script>
<link rel=stylesheet href="{{ url_for('static', filename='style.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<header>
<h1>Mozilla Persona Example</h1>
<div class=authbar>
<div class="authbar">
{% if g.user %}
Signed in as <em>{{ g.user }}</em>
(<a href="#" class=signout>Sign out</a>)
(<a href="#" class="signout">Sign out</a>)
{% else %}
Not signed in. <a href="#" class=signin>Sign in</a>
Not signed in. <a href="#" class="signin">Sign in</a>
{% endif %}
</div>
</header>