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