2021-11-28 01:43:29 +00:00
{% load i18n %}
{% block content %}
< div class = "block" >
2021-12-05 22:29:51 +00:00
{% if error == 'invalid_username' %}
< div class = "notification is-warning has-text-centered" role = "status" >
2021-12-06 21:36:57 +00:00
< p > {% blocktrans %}< strong > {{ account }}< / strong > is not a valid username{% endblocktrans %}.< / p >
< p > {% trans 'Check you have the correct username before trying again' %}.< / p >
2021-12-05 22:29:51 +00:00
< / div >
{% elif error == 'user_not_found' %}
< div class = "notification is-warning has-text-centered" role = "status" >
2021-12-06 21:36:57 +00:00
< p > {% blocktrans %}< strong > {{ account }}< / strong > could not be found or < code > {{ remote_domain }}< / code > does not support identity discovery{% endblocktrans %}.< / p >
< p > {% trans 'Check you have the correct username before trying again' %}.< / p >
2021-12-05 22:29:51 +00:00
< / div >
{% elif error == 'not_supported' %}
< div class = "notification is-warning has-text-centered" role = "status" >
2021-12-06 21:36:57 +00:00
< p > {% blocktrans %}< strong > {{ account }}< / strong > was found but < code > {{ remote_domain }}< / code > does not support 'remote follow'{% endblocktrans %}.< / p >
< p > {% blocktrans %}Try searching for < strong > {{ user }}< / strong > on < code > {{ remote_domain }}< / code > instead{% endblocktrans %}.< / p >
2021-12-05 22:29:51 +00:00
< / div >
{% elif not request.user.is_authenticated %}
2021-11-28 01:43:29 +00:00
< div class = "navbar-item" >
2021-11-29 08:37:56 +00:00
< div class = "columns" >
< div class = "column" >
< form name = "login" method = "post" action = "{% url 'login' %}?next={{ request.path }}?acct={{ user.remote_id }}" >
{% csrf_token %}
< div class = "columns is-variable is-1" >
< div class = "column" >
< label class = "is-sr-only" for = "id_localname" > {% trans "Username:" %}< / label >
< input type = "text" name = "localname" maxlength = "150" class = "input" required = "" id = "id_localname" placeholder = "{% trans 'username' %}" >
< / div >
< div class = "column" >
< label class = "is-sr-only" for = "id_password" > {% trans "Password:" %}< / label >
< input type = "password" name = "password" maxlength = "128" class = "input" required = "" id = "id_password" placeholder = "{% trans 'password' %}" >
< p class = "help" > < a href = "{% url 'password-reset' %}" > {% trans "Forgot your password?" %}< / a > < / p >
< / div >
< div class = "column is-narrow" >
< button class = "button is-primary" type = "submit" > {% trans "Log in" %}< / button >
< / div >
< / div >
< / form >
< / div >
< / div >
< / div >
2021-11-28 01:43:29 +00:00
{% elif error == 'ostatus_subscribe' %}
2021-11-30 01:42:52 +00:00
< div class = "notification is-warning has-text-centered" role = "status" >
2021-11-28 01:43:29 +00:00
< p > {% blocktrans %}Something went wrong trying to follow < strong > {{ account }}< / strong > {% endblocktrans %}< / p >
< p > {% trans 'Check you have the correct username before trying again.' %}< / p >
< / div >
2021-11-28 05:54:25 +00:00
{% elif error == 'is_blocked' %}
2021-11-30 01:42:52 +00:00
< div class = "notification is-danger has-text-centered" role = "status" >
2021-11-28 05:54:25 +00:00
< p > {% blocktrans %}You have blocked < strong > {{ account }}< / strong > {% endblocktrans %}< / p >
< / div >
2021-11-29 07:08:25 +00:00
{% elif error == 'has_blocked' %}
2021-11-30 01:42:52 +00:00
< div class = "notification is-danger has-text-centered" role = "status" >
2021-11-29 07:08:25 +00:00
< p > {% blocktrans %}< strong > {{ account }}< / strong > has blocked you{% endblocktrans %}< / p >
< / div >
2021-11-28 05:54:25 +00:00
{% elif error == 'already_following' %}
2021-11-30 01:42:52 +00:00
< div class = "notification is-success has-text-centered" role = "status" >
2021-11-28 05:54:25 +00:00
< p > {% blocktrans %}You are already following < strong > {{ account }}< / strong > {% endblocktrans %}< / p >
< / div >
{% elif error == 'already_requested' %}
2021-11-30 01:42:52 +00:00
< div class = "notification is-success has-text-centered" role = "status" >
2021-11-28 05:54:25 +00:00
< p > {% blocktrans %}You have already requested to follow < strong > {{ account }}< / strong > {% endblocktrans %}< / p >
< / div >
2021-11-28 01:43:29 +00:00
{% endif %}
< / div >
2021-11-29 04:33:26 +00:00
< div class = "block is-pulled-right" >
2021-11-30 20:45:30 +00:00
< button type = "button" class = "button" onclick = "closeWindow()" > Close window< / button >
2021-11-29 04:33:26 +00:00
< / div >
2021-11-28 01:43:29 +00:00
{% endblock %}