Update templates/index.html
Browse files- templates/index.html +2 -3
templates/index.html
CHANGED
@@ -179,7 +179,6 @@
|
|
179 |
</div>
|
180 |
</div>
|
181 |
|
182 |
-
<!-- Rest of the content structure remains the same -->
|
183 |
<!-- Text Input -->
|
184 |
<div class="mb-6 md:mb-8">
|
185 |
<label class="block white-text text-base md:text-lg font-medium mb-2 md:mb-3" for="text">
|
@@ -188,9 +187,9 @@
|
|
188 |
<textarea
|
189 |
id="text"
|
190 |
rows="4"
|
191 |
-
maxlength="
|
192 |
class="w-full px-4 md:px-5 py-3 md:py-4 rounded-xl input-dark focus:outline-none focus:ring-2 focus:ring-red-400 resize-none text-base md:text-lg"
|
193 |
-
placeholder="Enter your text here (max
|
194 |
></textarea>
|
195 |
<p id="char-count" class="text-sm md:text-base white-text mt-2 text-right">0/5000 characters</p>
|
196 |
</div>
|
|
|
179 |
</div>
|
180 |
</div>
|
181 |
|
|
|
182 |
<!-- Text Input -->
|
183 |
<div class="mb-6 md:mb-8">
|
184 |
<label class="block white-text text-base md:text-lg font-medium mb-2 md:mb-3" for="text">
|
|
|
187 |
<textarea
|
188 |
id="text"
|
189 |
rows="4"
|
190 |
+
maxlength="5000"
|
191 |
class="w-full px-4 md:px-5 py-3 md:py-4 rounded-xl input-dark focus:outline-none focus:ring-2 focus:ring-red-400 resize-none text-base md:text-lg"
|
192 |
+
placeholder="Enter your text here (max 5000 characters)..."
|
193 |
></textarea>
|
194 |
<p id="char-count" class="text-sm md:text-base white-text mt-2 text-right">0/5000 characters</p>
|
195 |
</div>
|