mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
Added verification to the profile page
This commit is contained in:
@@ -79,14 +79,17 @@ setup.</p>
|
|||||||
<h2>Reddit Accounts</h2>
|
<h2>Reddit Accounts</h2>
|
||||||
<p>This is a list of all your current linked Reddit accounts</p>
|
<p>This is a list of all your current linked Reddit accounts</p>
|
||||||
{% if redditaccounts %}
|
{% if redditaccounts %}
|
||||||
|
<p>To verify your Reddit account, login on Reddit then click
|
||||||
|
<a href="http://www.reddit.com/message/compose/?to=DredditVerification&subject=Verification">this link</a> and put your Auth username in the message.</p>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr><th>Username</th><th>Created Date</th></tr>
|
<tr><th>Username</th><th>Created Date</th><th>Validated</th></tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for acc in redditaccounts %}
|
{% for acc in redditaccounts %}
|
||||||
<tr><td>{{ acc.username }}</td>
|
<tr><td>{{ acc.username }}</td>
|
||||||
<td>{{ acc.date_created }}</td>
|
<td>{{ acc.date_created }}</td>
|
||||||
|
<td>{% if acc.validated %}Yes{% else %}No{% endif %}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
Reference in New Issue
Block a user