takahe/templates/api/oauth_code.html
2022-12-23 22:34:33 -07:00

12 lines
300 B
HTML

{% extends "base_plain.html" %}
{% block title %}Authorization Code{% endblock %}
{% block content %}
<h1>Authorization Code</h1>
<section>
<p>To continue, provide this code to your application:</p>
<p class="authorization-code">{{ code }}</p>
</section>
{% endblock %}