mirror of
https://github.com/voice-cloning-app/Voice-Cloning-App.git
synced 2026-02-24 20:20:22 +01:00
29 lines
1.3 KiB
HTML
29 lines
1.3 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='resources/bootstrap.min.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='resources/fontawesome.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}">
|
|
<script src="{{ url_for('static', filename='pane.js') }}"></script>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon/favicon-32x32.png') }}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon/favicon-16x16.png') }}">
|
|
<title>Voice Cloning</title>
|
|
<script>
|
|
let message = "{{ message }}";
|
|
if(message)
|
|
alert(message);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="container flex-grow-1 flex-shrink-0 py-5">
|
|
<div class="mb-5 p-4 bg-white shadow-sm">
|
|
<a href="/">Back</a>
|
|
<h3 class="text-center">Voice Cloning</h3><br>
|
|
<div class="bs-stepper-content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |