forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (18 loc) · 771 Bytes
/
index.html
File metadata and controls
22 lines (18 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% 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 type="a" class="btn btn-primary" href="/accounts/profile/">View/edit profile</a>
{% else %}
<a type="a" class="btn btn-primary" href="/accounts/login/" rel="nofollow">Sign in</a>
{% endif %}
<a type="a" class="btn btn-info" href="/accounts/create/">New account</a>
<a type="a" class="btn btn-warning" href="/accounts/reset/">Reset password</a>
<a type="a" class="btn btn-default" href="/accounts/settings/">Change browser preferences</a>
</div>
{% endblock %}