microblog.pub/templates/remote_follow.html
2018-06-04 17:59:38 +02:00

18 lines
553 B
HTML

{% extends "layout.html" %}
{% import 'utils.html' as utils %}
{% block header %}
{% endblock %}
{% block content %}
<div id="container">
{% include "header.html" %}
<h2 style="font-weight:normal">You're about to follow me <small style="font-weight:normal;font-family:sans-serif">\o/</small></h2>
<form method="POST" action="">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
<input type="text" name="profile" placeholder="you@your-instance">
<input type="submit" value="Proceed to remote follow">
</form>
</div>
{% endblock %}