forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 934 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Account management{% endblock %}
{% block content %}
{% origin %}
<h1>Account management</h1>
<div class="buttonlist">
{% if user.username %}
<a class="btn btn-primary" href="{% url 'ietf.ietfauth.views.profile' %}">View/edit profile</a>
{% else %}
<a
class="btn btn-primary"
href="{% url 'ietf.ietfauth.views.login' %}"
rel="nofollow">Sign in</a>
{% endif %}
<a class="btn btn-info" href="{% url 'ietf.ietfauth.views.create_account' %}">New account</a>
<a class="btn btn-warning" href="{% url 'ietf.ietfauth.views.password_reset' %}">Reset password</a>
<a class="btn btn-primary" href="{% url 'ietf.cookies.views.preferences' %}">Change browser preferences</a>
</div>
{% endblock %}