19 lines
442 B
HTML
19 lines
442 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Success - Upload Music</title>
|
|
<style>
|
|
body {
|
|
background-color: #2B2726;
|
|
color: #FFFFFF;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Success</h1>
|
|
<p>{{ success_message }}</p>
|
|
<a href="/"><button>Upload another file</button></a>
|
|
</body>
|
|
</html> |