2022-09-23 13:09:05 -05:00
|
|
|
{%- import "utils.html" as utils with context -%}
|
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
<title>Interact from your instance</title>
|
2022-11-17 23:35:03 -06:00
|
|
|
<meta name="robots" content="noindex, nofollow">
|
2022-09-23 13:09:05 -05:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% include "header.html" %}
|
|
|
|
|
|
|
|
<div class="box">
|
|
|
|
<h2>Interact with this object</h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ utils.display_object(outbox_object) }}
|
|
|
|
|
|
|
|
<div class="box">
|
|
|
|
<form class="form" action="{{ url_for("post_remote_interaction") }}" method="POST">
|
|
|
|
{{ utils.embed_csrf_token() }}
|
|
|
|
<input type="text" name="profile" placeholder="you@instance.tld" autofocus>
|
|
|
|
<input type="hidden" name="ap_id" value="{{ outbox_object.ap_id }}">
|
|
|
|
<input type="submit" value="interact from your instance">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|