2020-11-10 19:40:42 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% block content_inner %}
|
|
|
|
{% if data %}
|
|
|
|
<form action="/restart" method="POST">
|
|
|
|
<label for="host">Server Host:</label>
|
|
|
|
<input type="text" id="host" name="host" class="form-control" value="{{data.state.host}}">
|
|
|
|
<br>
|
|
|
|
<label for="port">Server Port:</label>
|
|
|
|
<input type="number" id="port" name="port" class="form-control" value="{{data.state.port}}">
|
|
|
|
<br>
|
|
|
|
<label for="name">Server Name:</label>
|
|
|
|
<input type="text" id="name" name="name" class="form-control" value="{{data.state.server_name}}">
|
|
|
|
<br>
|
|
|
|
<label for="channels">Number of Channels:</label>
|
|
|
|
<input type="number" id="channels" name="channels" class="form-control" value="{{data.state.num_channels}}">
|
|
|
|
<br>
|
2020-11-15 17:48:05 +00:00
|
|
|
<label for="port">WebSockets Port:</label>
|
|
|
|
<input type="number" id="ws_port" name="ws_port" class="form-control" value="{{data.state.ws_port}}">
|
|
|
|
<br>
|
2020-11-10 19:40:42 +00:00
|
|
|
<input type="submit" class="btn btn-primary" value="Restart Server">
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|