remote_follow.html 592 B

123456789101112131415
  1. {% extends "layout.html" %}
  2. {% import 'utils.html' as utils %}
  3. {% block content %}
  4. {% include "header.html" %}
  5. <div class="content pure-u-1 pure-u-md-3-4">
  6. <aside style="width:550px">Please insert your username to proceed to follow!<br/><br/>
  7. <center><form method="POST" action="" style="display:inline">
  8. <input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
  9. <input type="text" name="profile" placeholder="you@your-instance"><br/><br/>
  10. <input type="submit" value="Proceed to remote follow" class="pure-button pure-button-success">
  11. </form></center>
  12. </aside>
  13. </div>
  14. {% endblock %}