13 lines
352 B
HTML
13 lines
352 B
HTML
{{ define "content" }}
|
|
<script type="text/javascript">
|
|
function playSound() {
|
|
var data = {
|
|
command: "!bsth",
|
|
soundname: "unmoeglich"
|
|
};
|
|
$.post("/playsound", data, function(data, success) {});
|
|
}
|
|
</script>
|
|
<a href="/logout">Logout</a><br/>
|
|
<a href="javascript:playSound()">Play sound</a> {{ end }}
|