26 lines
1011 B
PHP
Executable File
26 lines
1011 B
PHP
Executable File
<?php
|
|
?>
|
|
|
|
<form action="#" role="form" id="finishSettingsForm">
|
|
<h3 class="form-title">Setup Complete!</h3>
|
|
<span id="helpBlock" class="help-block help-message"></span>
|
|
<p>
|
|
Looks like you're almost done! As a final step, run the following commands from the terminal:<br/>
|
|
<code>sudo service airtime-playout start</code>, <code>sudo service airtime-liquidsoap start</code>,
|
|
<code>sudo service airtime-media-monitor start</code>.
|
|
</p>
|
|
<p>
|
|
Click "Done!" to bring up the Airtime configuration checklist; if your configuration is all green,
|
|
you're ready to get started with your personal Airtime station!
|
|
</p>
|
|
<div>
|
|
<input type="submit" formtarget="finishSettingsForm" class="btn btn-primary btn-next" value="Done!"/>
|
|
<input type="button" class="btn btn-primary btn-back" value="❰ Back"/>
|
|
</div>
|
|
</form>
|
|
|
|
<script>
|
|
$("#finishSettingsForm").submit(function(e) {
|
|
submitForm(e, "FinishSetup");
|
|
});
|
|
</script>
|