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