Spaces:
Running
Running
Update templates/index.html
Browse files- templates/index.html +1 -1
templates/index.html
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
<h1>Enter Details</h1>
|
13 |
<form action="/" method="POST">
|
14 |
<label for="user_text">Enter Your Text: </label>
|
15 |
-
<textarea name="user_text" maxlength="5000" rows="4" cols="50" oninput="updateCount()" required>{{ user_text if user_text else '' }}</textarea>
|
16 |
<p id="charCount">5000 characters remaining</p>
|
17 |
<br><br>
|
18 |
|
|
|
12 |
<h1>Enter Details</h1>
|
13 |
<form action="/" method="POST">
|
14 |
<label for="user_text">Enter Your Text: </label>
|
15 |
+
<textarea id="user_text" name="user_text" maxlength="5000" rows="4" cols="50" oninput="updateCount()" required>{{ user_text if user_text else '' }}</textarea>
|
16 |
<p id="charCount">5000 characters remaining</p>
|
17 |
<br><br>
|
18 |
|