26 lines
805 B
HTML
26 lines
805 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Make this playlist</title>
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
|
{{ bootstrap.load_css() }}
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div>
|
|
<script>
|
|
Swal.fire({
|
|
title:"{{ response }}",
|
|
text: "{{ comment }}",
|
|
icon: "{{ type }}",
|
|
confirmButtonText: "Add another track",
|
|
}).then(function() {
|
|
window.location = "/search/{{ roomid }}";
|
|
})
|
|
|
|
</script>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |