datatracker/ietf/templates/registration/index.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

21 lines
855 B
HTML

{% 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-primary" href="/accounts/settings/">Change browser preferences</a>
</div>
{% endblock %}