mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1019 B
27 lines
1019 B
<!doctype html> |
|
<title>{% block title %}{% endblock %} | Flask Persona Example</title> |
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge"> |
|
<script src="{{ config.PERSONA_JS }}"></script> |
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> |
|
<script> |
|
/* the url root is useful for doing HTTP requests */ |
|
var $URL_ROOT = {{ request.url_root|tojson }}; |
|
|
|
/* we store the current user here so that the persona |
|
javascript support knows about the current user */ |
|
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') }}"> |
|
<header> |
|
<h1>Mozilla Persona Example</h1> |
|
<div class="authbar"> |
|
{% if g.user %} |
|
Signed in as <em>{{ g.user }}</em> |
|
(<a href="#" class="signout">Sign out</a>) |
|
{% else %} |
|
Not signed in. <a href="#" class="signin">Sign in</a> |
|
{% endif %} |
|
</div> |
|
</header> |
|
{% block body %}{% endblock %}
|
|
|