Child: [b55760] (diff)

Download this file

oauth_authorize_ok.html    16 lines (12 with data), 572 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{% set hide_left_bar = True %}
{% extends g.theme.master %}
{% block title %} Third-party application authorized. {% endblock %}
{% block header %}Third-party application authorized.{% endblock %}
{% block content %}
<p>You have authorized {{ rtok.consumer_token.name }} access to your account. If you wish
to revoke this access at any time, please visit
<a href="{{g.url('/auth/prefs/') }}">user preferences</a>
and click 'revoke access'.</p>
<h2>PIN: {{ rtok.validation_pin }}</h2>
<a href="{{g.url('/auth/prefs/')}}">Return to preferences</a>
{% endblock %}