Update templates/index.html
Browse files- templates/index.html +34 -47
templates/index.html
CHANGED
@@ -7,10 +7,10 @@
|
|
7 |
<style>
|
8 |
body {
|
9 |
font-family: 'Arial', sans-serif;
|
10 |
-
background: linear-gradient(135deg, #
|
11 |
margin: 0;
|
12 |
padding: 20px;
|
13 |
-
|
14 |
}
|
15 |
.container {
|
16 |
max-width: 800px;
|
@@ -18,44 +18,42 @@
|
|
18 |
background: white;
|
19 |
padding: 30px;
|
20 |
border-radius: 15px;
|
21 |
-
box-shadow: 0
|
22 |
}
|
23 |
h1 {
|
24 |
-
color: #
|
25 |
text-align: center;
|
26 |
margin-bottom: 30px;
|
27 |
}
|
28 |
-
.form-group {
|
29 |
-
margin-bottom: 20px;
|
30 |
-
}
|
31 |
textarea {
|
32 |
width: 100%;
|
|
|
33 |
padding: 15px;
|
34 |
border: 2px solid #ddd;
|
35 |
border-radius: 8px;
|
36 |
-
resize: vertical;
|
37 |
font-size: 16px;
|
|
|
|
|
38 |
}
|
39 |
select {
|
40 |
-
|
41 |
-
padding: 12px;
|
42 |
-
border: 2px solid #ddd;
|
43 |
-
border-radius: 8px;
|
44 |
font-size: 16px;
|
45 |
-
|
|
|
|
|
46 |
}
|
47 |
-
button {
|
48 |
-
background: #
|
49 |
color: white;
|
50 |
-
padding: 12px
|
51 |
border: none;
|
52 |
border-radius: 8px;
|
53 |
cursor: pointer;
|
54 |
font-size: 16px;
|
55 |
transition: background 0.3s;
|
56 |
}
|
57 |
-
button:hover {
|
58 |
-
background: #
|
59 |
}
|
60 |
.voice-grid {
|
61 |
display: grid;
|
@@ -64,25 +62,20 @@
|
|
64 |
margin-top: 30px;
|
65 |
}
|
66 |
.voice-card {
|
67 |
-
background: #
|
68 |
padding: 15px;
|
69 |
-
border-radius:
|
70 |
text-align: center;
|
71 |
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
72 |
-
}
|
73 |
-
.voice-card audio {
|
74 |
-
width: 100%;
|
75 |
-
margin-top: 10px;
|
76 |
}
|
77 |
.voice-card button {
|
78 |
margin-top: 10px;
|
79 |
-
background: #
|
80 |
}
|
81 |
.voice-card button:hover {
|
82 |
-
background: #
|
83 |
}
|
84 |
.error {
|
85 |
-
color: #
|
86 |
text-align: center;
|
87 |
margin-top: 20px;
|
88 |
}
|
@@ -92,34 +85,28 @@
|
|
92 |
<div class="container">
|
93 |
<h1>Text to Speech Converter</h1>
|
94 |
<form method="post">
|
95 |
-
<
|
96 |
-
|
97 |
-
|
98 |
-
{
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
</div>
|
103 |
-
<button type="submit" name="generate">Generate & Download</button>
|
104 |
</form>
|
105 |
-
|
|
|
106 |
<div class="voice-grid">
|
107 |
{% for voice in voices %}
|
108 |
<div class="voice-card">
|
109 |
<h3>{{ voice }}</h3>
|
110 |
-
<
|
111 |
-
<
|
112 |
-
|
113 |
-
</audio>
|
114 |
-
<form method="post" style="margin-top: 10px;">
|
115 |
-
<input type="hidden" name="text" value="Hello, this is a sample of my voice.">
|
116 |
-
<input type="hidden" name="voice" value="{{ voice }}">
|
117 |
-
<button type="submit" name="generate">Download Sample</button>
|
118 |
</form>
|
119 |
</div>
|
120 |
{% endfor %}
|
121 |
</div>
|
122 |
-
|
123 |
{% if error %}
|
124 |
<p class="error">Error: {{ error }}</p>
|
125 |
{% endif %}
|
|
|
7 |
<style>
|
8 |
body {
|
9 |
font-family: 'Arial', sans-serif;
|
10 |
+
background: linear-gradient(135deg, #667eea, #764ba2);
|
11 |
margin: 0;
|
12 |
padding: 20px;
|
13 |
+
color: #333;
|
14 |
}
|
15 |
.container {
|
16 |
max-width: 800px;
|
|
|
18 |
background: white;
|
19 |
padding: 30px;
|
20 |
border-radius: 15px;
|
21 |
+
box-shadow: 0 0 20px rgba(0,0,0,0.1);
|
22 |
}
|
23 |
h1 {
|
24 |
+
color: #4a4a4a;
|
25 |
text-align: center;
|
26 |
margin-bottom: 30px;
|
27 |
}
|
|
|
|
|
|
|
28 |
textarea {
|
29 |
width: 100%;
|
30 |
+
height: 150px;
|
31 |
padding: 15px;
|
32 |
border: 2px solid #ddd;
|
33 |
border-radius: 8px;
|
|
|
34 |
font-size: 16px;
|
35 |
+
resize: vertical;
|
36 |
+
margin-bottom: 20px;
|
37 |
}
|
38 |
select {
|
39 |
+
padding: 10px;
|
|
|
|
|
|
|
40 |
font-size: 16px;
|
41 |
+
border-radius: 8px;
|
42 |
+
margin-bottom: 20px;
|
43 |
+
width: 200px;
|
44 |
}
|
45 |
+
.button {
|
46 |
+
background: #667eea;
|
47 |
color: white;
|
48 |
+
padding: 12px 25px;
|
49 |
border: none;
|
50 |
border-radius: 8px;
|
51 |
cursor: pointer;
|
52 |
font-size: 16px;
|
53 |
transition: background 0.3s;
|
54 |
}
|
55 |
+
.button:hover {
|
56 |
+
background: #5a6cd3;
|
57 |
}
|
58 |
.voice-grid {
|
59 |
display: grid;
|
|
|
62 |
margin-top: 30px;
|
63 |
}
|
64 |
.voice-card {
|
65 |
+
background: #f8f9fa;
|
66 |
padding: 15px;
|
67 |
+
border-radius: 8px;
|
68 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
69 |
}
|
70 |
.voice-card button {
|
71 |
margin-top: 10px;
|
72 |
+
background: #764ba2;
|
73 |
}
|
74 |
.voice-card button:hover {
|
75 |
+
background: #633d87;
|
76 |
}
|
77 |
.error {
|
78 |
+
color: #dc3545;
|
79 |
text-align: center;
|
80 |
margin-top: 20px;
|
81 |
}
|
|
|
85 |
<div class="container">
|
86 |
<h1>Text to Speech Converter</h1>
|
87 |
<form method="post">
|
88 |
+
<textarea name="text" placeholder="Enter your text here..."></textarea>
|
89 |
+
<select name="voice">
|
90 |
+
{% for voice in voices %}
|
91 |
+
<option value="{{ voice }}">{{ voice }}</option>
|
92 |
+
{% endfor %}
|
93 |
+
</select>
|
94 |
+
<button type="submit" name="generate" class="button">Generate & Download</button>
|
|
|
|
|
95 |
</form>
|
96 |
+
|
97 |
+
<h2 style="margin-top: 40px; text-align: center;">Voice Previews</h2>
|
98 |
<div class="voice-grid">
|
99 |
{% for voice in voices %}
|
100 |
<div class="voice-card">
|
101 |
<h3>{{ voice }}</h3>
|
102 |
+
<form method="post">
|
103 |
+
<input type="hidden" name="preview_voice" value="{{ voice }}">
|
104 |
+
<button type="submit" name="preview" class="button">Preview</button>
|
|
|
|
|
|
|
|
|
|
|
105 |
</form>
|
106 |
</div>
|
107 |
{% endfor %}
|
108 |
</div>
|
109 |
+
|
110 |
{% if error %}
|
111 |
<p class="error">Error: {{ error }}</p>
|
112 |
{% endif %}
|