mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-24 15:19:30 +00:00
24 lines
712 B
HTML
24 lines
712 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Add Reddit Account{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="page-header">
|
|
<h1>Add Reddit Account</h1>
|
|
</div>
|
|
|
|
<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 reddit-addaccount %}" method="post">
|
|
<fieldset>
|
|
{% include "formtools/formerror.html" %}
|
|
{% include "formtools/formfield.html" with field=form.username %}
|
|
{% csrf_token %}
|
|
<input type="submit" value="Add Account" />
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|