mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
17 lines
534 B
HTML
17 lines
534 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Add Reddit Account{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>This will bind a Reddit account to your Auth Gateway login, this is usually required for application to the
|
|
corporation</p>
|
|
<p>Please note, you will be forever tied to this account and posts and comments made on this account will be checked
|
|
on from time to time</p>
|
|
<form action="{% url sso.views.reddit_add %}" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input type="submit" value="Add Account" />
|
|
</form>
|
|
{% endblock %}
|