authorize_remote_follow.html 438 B

123456789101112
  1. {% extends "layout.html" %}
  2. {% import 'utils.html' as utils %}
  3. {% block content %}
  4. <aside>You're about to follow <strong>{{ profile }}</strong><br/><br/>
  5. <form method="POST" action="">
  6. <input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
  7. <input type="hidden" name="profile" value="{{ profile }}">
  8. <center><input type="submit" value="Follow" class="pure-button pure-button-success"></center>
  9. </form>
  10. </aside>
  11. {% endblock %}