Spaces:
Running
Running
Create Interface.html
Browse files- templates/Interface.html +17 -0
templates/Interface.html
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>FastAPI Text-to-Speech App</title>
|
5 |
+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
6 |
+
</head>
|
7 |
+
<body>
|
8 |
+
<div class="container">
|
9 |
+
<h1>FastAPI Text-to-Speech App</h1>
|
10 |
+
<div id="app"></div>
|
11 |
+
</div>
|
12 |
+
|
13 |
+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
14 |
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
15 |
+
<script src="{{ url_for('static', filename='app.js') }}"></script>
|
16 |
+
</body>
|
17 |
+
</html>
|