microblog.pub/app/templates/remote_follow.html

21 lines
561 B
HTML
Raw Normal View History

2022-06-26 10:28:21 +02:00
{%- import "utils.html" as utils with context -%}
{% extends "layout.html" %}
2022-07-15 20:01:55 +02:00
{% block head %}
<title>Remote follow {{ local_actor.display_name }}</title>
{% endblock %}
2022-06-26 10:28:21 +02:00
{% block content %}
{% include "header.html" %}
2022-07-09 08:42:45 +02:00
<div class="box">
2022-06-26 10:28:21 +02:00
<h2>Remotely follow {{ local_actor.display_name }}</h2>
2022-07-03 22:01:47 +02:00
<form class="form" action="{{ url_for("post_remote_follow") }}" method="POST">
2022-07-19 08:12:49 +02:00
{{ utils.embed_csrf_token() }}
2022-07-14 18:40:38 +02:00
<input type="text" name="profile" placeholder="you@instance.tld" autofocus>
2022-07-19 08:12:49 +02:00
<input type="submit" value="follow">
2022-06-26 10:28:21 +02:00
</form>
2022-07-09 08:42:45 +02:00
</div>
2022-06-26 10:28:21 +02:00
{% endblock %}