More UI fixes
parent
f96458342b
commit
809f9cd95d
|
@ -45,7 +45,9 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
Powered by <a href="https://docs.microblog.pub">microblog.pub</a> <small class="microblogpub-version"><code>{{ microblogpub_version }}</code></small> and the <a href="https://activitypub.rocks/">ActivityPub</a> protocol
|
<div class="box">
|
||||||
|
Powered by <a href="https://docs.microblog.pub">microblog.pub</a> <small class="microblogpub-version"><code>{{ microblogpub_version }}</code></small> and the <a href="https://activitypub.rocks/">ActivityPub</a> protocol
|
||||||
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -3,11 +3,13 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include "header.html" %}
|
{% include "header.html" %}
|
||||||
|
|
||||||
|
<div class="box">
|
||||||
<h2>Remotely follow {{ local_actor.display_name }}</h2>
|
<h2>Remotely follow {{ local_actor.display_name }}</h2>
|
||||||
<form class="form" action="{{ url_for("post_remote_follow") }}" method="POST">
|
<form class="form" action="{{ url_for("post_remote_follow") }}" method="POST">
|
||||||
<input type="hidden" name="csrf_token" value="{{remote_follow_csrf_token}}">
|
<input type="hidden" name="csrf_token" value="{{remote_follow_csrf_token}}">
|
||||||
<input type="text" name="profile" placeholder="you@instance.tld">
|
<input type="text" name="profile" placeholder="you@instance.tld">
|
||||||
<input type="submit" value="Follow">
|
<input type="submit" value="Follow">
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue