aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBlista Kanjo2021-12-02 02:08:23 -0500
committerBlista Kanjo2021-12-02 02:08:23 -0500
commit2f8428afd7b7283c0dcc0ffd988aae536440946f (patch)
treed378a5c2343cab672124e763e710c70404406e60
parent275f4db17933cf10a23aff36e325a544b4c040d9 (diff)
now with session autosave for user's text
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index d5b673d..526e54a 100644
--- a/index.php
+++ b/index.php
@@ -77,7 +77,7 @@
<div>
<h2 class="centered">plain text or markdown goes here:</h2>
<form class="" action="index.php" method="post">
- <textarea id="user-input" name="user-input" rows="8" cols="80" value= <?php echo $_SESSION['user-input']; ?>></textarea>
+ <textarea id="user-input" name="user-input" rows="8" cols="80"><?php echo $_SESSION['user-input']; ?></textarea>
<div class="centered">
<button type="submit" name="compile">create presentation</button>
</div>