Index: src/main/resources/db/migration/V1__init_ddl.sql
===================================================================
--- src/main/resources/db/migration/V1__init_ddl.sql	(revision e179f9816eca4d59ff29afda2107ac38dd25a76f)
+++ src/main/resources/db/migration/V1__init_ddl.sql	(revision 296decc46e1e8f8e26f7fae51dc7f22ceff6edc3)
@@ -196,5 +196,5 @@
 create table feedback (
     description TEXT,
-    submission_type varchar(1),
+    submission_type varchar(1) CHECK(submission_type IN ('P','R')),
     created_by int references users(id),
     created_at timestamp default now() not null,
@@ -207,5 +207,5 @@
     created_at  TIMESTAMP default now() not null,
     description VARCHAR(200) NOT NULL,
-    status      varchar(32) default 'PENDING',
+    status      varchar(32) default 'PENDING' CHECK(status IN ( 'ACCEPTED', 'DENIED', 'PENDING')),
     thread_id   INT REFERENCES thread (id) on delete cascade,
     for_user_id INT REFERENCES users (id) on delete cascade,
Index: src/main/resources/templates/show-topic.html
===================================================================
--- src/main/resources/templates/show-topic.html	(revision e179f9816eca4d59ff29afda2107ac38dd25a76f)
+++ src/main/resources/templates/show-topic.html	(revision 296decc46e1e8f8e26f7fae51dc7f22ceff6edc3)
@@ -67,5 +67,5 @@
                     <form th:action="@{/topics/{topic-name}/discussions/add(topic-name=${topic.getTitle()})}" method="post">
                         <div class="mb-3">
-                            <label for="reply" class="form-label">Your Reply</label>
+                            <label  class="form-label">Your Reply</label>
                             <textarea name="content" class="form-control" rows="3" placeholder="Write your reply here"
                                       required></textarea>
@@ -221,5 +221,5 @@
             <form th:action="@{/topics/{topic-name}/discussions/add(topic-name=${topic.getTitle()})}" method="post">
                 <div class="mb-3">
-                    <label for="reply" class="form-label">Your Reply</label>
+                    <label  class="form-label">Your Reply</label>
                     <textarea name="content" class="form-control" rows="3" placeholder="Write your reply here"
                               required></textarea>
@@ -253,5 +253,5 @@
                 <form th:action="@{/topics/{id}/tags/add (id=${topic.getId()})}" method="post" id="addTagForm">
                     <div class="mb-3">
-                        <label for="tagName" class="form-label">Tag Name</label>
+                        <label  class="form-label">Tag Name</label>
                         <select id="existingTags" class="form-select mb-3" name="tagName">
                             <option value="" selected disabled>Select an existing tag</option>
