A self hosted livestreaming server.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 
satyr/templates/chat_integ.njk

14 lines
904 B

{% extends "base.njk" %}
{% block content %}
<h3>Integrate your stream chat</h3><span style="font-size: small;">Ask your instance administrator for the discord, xmpp, and irc servers you will be using.</span>
<p></p>
<form action="/api/user/update/chat" method="POST" target="responseFrame">
Discord Channel: </br><input type="text" name="discord" style="min-width: 300px" value="{{integ.discord}}"/></br>
IRC Channel: </br><input type="text" name="irc" style="min-width: 300px" value="{{integ.irc}}"/></br>
XMPP Room: </br><input type="text" name="xmpp" style="min-width: 300px" value="{{integ.xmpp}}"/></br>
Twitch Channel: </br><input type="text" name="twitch" style="min-width: 300px" value="{{integ.twitch}}"/></br>
<p></p>
<input type="submit" value="Update Chat">
</form></br>
<iframe name="responseFrame" border="0" frameborder="0" style="display: inline;"></iframe>
{% endblock %}