mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
16 lines
491 B
HTML
16 lines
491 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Add Service Account{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>To add a service to your account, selec the service from the list below
|
|
then provide a username and password you wish to use to connect.<br/>
|
|
<br/>
|
|
For details on how to connect to each service, please consult the <a
|
|
href="http://wiki.dredd.it">wiki</a></p>
|
|
<form action="/profile/add/service" method="post">
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Submit" />
|
|
</form>
|
|
{% endblock %}
|