mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
Added a newline between form tables and submit button to better identify it visually.
Added a link to the HR page from the EVE API page to better point out the need to submit an application.
This commit is contained in:
@@ -4,13 +4,14 @@
|
||||
|
||||
{% block content %}
|
||||
|
||||
<p>This service will reset your password for account {{ acc.service_uid }} on {{ acc.service }}. If you wish to continue please click the link
|
||||
<p>This service will reset your password for account {{ acc.service_uid }} on {{ acc.service }}. If you wish to continue please click the link
|
||||
below.</p>
|
||||
|
||||
<form action="{% url sso.views.service_reset serviceid %}" method="post">
|
||||
<table>
|
||||
{{ form.as_table }}
|
||||
</table>
|
||||
<br />
|
||||
<input type="submit" value="Reset Account" />
|
||||
</form>
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<tr><td>{{ form.username.label_tag }}</td><td>{{ form.username }}</td></tr>
|
||||
<tr><td>{{ form.password.label_tag }}</td><td>{{ form.password }}</td></tr>
|
||||
</table>
|
||||
|
||||
<br />
|
||||
<input type="submit" value="login" />
|
||||
<input type="hidden" name="next" value="{{ next }}" />
|
||||
</form>
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
<table>
|
||||
{{ form }}
|
||||
</table>
|
||||
<br />
|
||||
<input type="submit" value="{% trans "Create Account" %}" />
|
||||
</form>
|
||||
{% endblock %}
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}API Services Password Reset{% endblock %}
|
||||
{% block title %}External Auth API Services Password Reset{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<p>This service will reset your password for all API Services. If you wish to continue please click the link
|
||||
below.</p>
|
||||
<p>This service will reset your password for all External Auth API Services. If you wish to continue please enter a new
|
||||
password below.</p>
|
||||
|
||||
<form action="{% url sso.views.set_apipasswd %}" method="post">
|
||||
<table>
|
||||
{{ form.as_table }}
|
||||
</table>
|
||||
<br />
|
||||
<input type="submit" value="Reset Account" />
|
||||
</form>
|
||||
|
||||
|
||||
@@ -11,6 +11,9 @@ page</a> and a optional description.</p>
|
||||
<table>
|
||||
{{ form.as_table }}
|
||||
</table>
|
||||
<br />
|
||||
<input type="submit" value="Add Key" />
|
||||
</form>
|
||||
<p>Once you have added your EVE API key, don't forget to apply in game, as well as add an application through our
|
||||
<a href="{% url hr.applications.add}">HR system.</a></p>
|
||||
{% endblock %}
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
<table>
|
||||
{{ form.as_table }}
|
||||
</table>
|
||||
<br />
|
||||
<input type="submit" value="Lookup" />
|
||||
</form>
|
||||
{% endblock %}
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
<h2>External API Auth Services</h2>
|
||||
<p>To reset your External API Auth Services password, which is used to access tools and websites which use Auth's API, click the link below</p>
|
||||
<p><a href="{% url sso.views.set_apipasswd %}">Reset Auth Services Password</a></p>
|
||||
<p><a href="{% url sso.views.set_apipasswd %}">Reset External API Auth Services Password</a></p>
|
||||
|
||||
{% if eveaccounts %}
|
||||
<h2>External non-API Service Accounts</h2>
|
||||
|
||||
@@ -3,14 +3,15 @@
|
||||
{% 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
|
||||
<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
|
||||
<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>
|
||||
<br />
|
||||
<input type="submit" value="Add Account" />
|
||||
</form>
|
||||
{% endblock %}
|
||||
|
||||
@@ -3,20 +3,21 @@
|
||||
{% block title %}Add External Service Account{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<p>To add a service to your account, select the service from the list
|
||||
below
|
||||
<p>To add a service to your account, select the service from the list
|
||||
below
|
||||
then provide select a username you wish to use create the account for<br/>
|
||||
<br/>
|
||||
For details on how to connect to each service, please consult the <a
|
||||
For details on how to connect to each service, please consult the <a
|
||||
href="http://wiki.dredd.it">wiki</a></p>
|
||||
|
||||
<p>If you are missing some services, please check that your API key is
|
||||
<p>If you are missing some services, please check that your API key is
|
||||
up to date, if so use the "Refresh" function.</p>
|
||||
|
||||
<form action="{% url sso.views.service_add %}" method="post">
|
||||
<table>
|
||||
{{ form.as_table }}
|
||||
</table>
|
||||
<br />
|
||||
<input type="submit" value="Create Account" />
|
||||
</form>
|
||||
<br/>
|
||||
|
||||
Reference in New Issue
Block a user