summaryrefslogtreecommitdiff
path: root/src/apps/changepw/templates/changepw/index.html
blob: 12df371b3ae6556c81d89272d2d87ac80ef80c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{% extends "base.html" %}
{% block js %}
{% endblock %}
{% block title %}SSO Password Manager{% endblock %}
{% block content %}
<h2>SSO Password Manager</h2>
<p>
    Hello {{ full_name|capfirst }},<br />
    Welcome to the single sign on password manager site.
</p>

<table>
    <tr>
        <th>Your usernames</th><th></th>
    </tr>
    <tr>
        <td>SSO username:</td><td>{{ username }}</td>
    </tr>
    <tr>
        <td><!-- VPN and -->eduroam username:</td><td>{{ username }}/ppp</td>
    </tr>
</table>

<p>
Available actions:<br />
<a href="{% url 'changepw' "sso" %}">Change single sign on (SSO) password</a><br />
{% if user.is_staff %}
    <a href="{% url 'changepw' "net" %}">Change TACACS password</a><br />
{% endif %}
{% if user.is_active or user.is_staff %}
    <a href="{% url 'changepw' "ppp" %}">Change <!-- VPN and -->eduroam password</a><br />
{% endif %}
{% if user.is_staff %}
    <a href="{% url 'changepublicsshkeys' %}">Update your public SSH keys</a><br />
    <a href="{% url 'ideviceconf' %}" rel="external">Configure eduroam on your iDevice</a>
{% endif %}
</p>

<p><a href="{% url 'logout' %}">Log out</a></p>
{% endblock %}