bridgy-fed/templates/followers.html

30 wiersze
903 B
HTML

{% extends "base.html" %}
{% block title %}{{ g.user.handle_or_id() }}'s followers - Bridgy Fed{% endblock %}
{% block content %}
{% include "user_addresses.html" %}
<div class="row big">Followers</div>
<div class="row">
<form method="post" action="/remote-follow">
<nobr>
<label for="follow-address">Follow @{{ id }} with your fediverse address:</label>
<input id="follow-address" name="address" type="text" required
placeholder="@user@domain.social" alt="fediverse address"
value="{{ follow_url or '' }}"></input>
<input name="domain" type="hidden" value="{{ id }}"></input>
<input name="protocol" type="hidden" value="{{ g.user.LABEL }}"></input>
<button type="submit" class="btn btn-default">Follow</button>
</nobr>
</form>
</div>
{% with page_name="followers" %}
{% include "_followers.html" %}
{% endwith %}
{% endblock %}