datatracker/ietf/templates/registration/index.html
Lars Eggert eb5423d084
ci: Also check generated HTML with the "vnu" validator (#3682)
* ci: Also check generated HTML with the "vnu" validator

Because HTML Tidy apparently misses a bunch of errors.

* thead -> tbody

* More fixes

* More fixes

* Start checker in test runner
2022-03-21 12:50:23 -05:00

21 lines
810 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 class="btn btn-primary" href="/accounts/profile/">View/edit profile</a>
{% else %}
<a
class="btn btn-primary"
href="/accounts/login/"
rel="nofollow">Sign in</a>
{% endif %}
<a class="btn btn-info" href="/accounts/create/">New account</a>
<a class="btn btn-warning" href="/accounts/reset/">Reset password</a>
<a class="btn btn-primary" href="/accounts/settings/">Change browser preferences</a>
</div>
{% endblock %}