diff --git a/Latest_Group_Project/Booking_System/__pycache__/decorators.cpython-311.pyc b/Latest_Group_Project/Booking_System/__pycache__/decorators.cpython-311.pyc
index 159f0b01a86767ef69aae7fbc0346b3d6f94f44d..bf867cc21d3113bce6fbba68840c2b349dd3f8f0 100644
Binary files a/Latest_Group_Project/Booking_System/__pycache__/decorators.cpython-311.pyc and b/Latest_Group_Project/Booking_System/__pycache__/decorators.cpython-311.pyc differ
diff --git a/Latest_Group_Project/Booking_System/__pycache__/forms.cpython-311.pyc b/Latest_Group_Project/Booking_System/__pycache__/forms.cpython-311.pyc
index 854a8232ffbeaa6f64c20557442a4b80844b13e2..ce153b26fc66c664ea6488603ae0da92cc0a93cb 100644
Binary files a/Latest_Group_Project/Booking_System/__pycache__/forms.cpython-311.pyc and b/Latest_Group_Project/Booking_System/__pycache__/forms.cpython-311.pyc differ
diff --git a/Latest_Group_Project/Booking_System/__pycache__/views.cpython-311.pyc b/Latest_Group_Project/Booking_System/__pycache__/views.cpython-311.pyc
index 41da52a89baf51b0a5b683dd1402cf37aa83f4c2..8241feeb2a0b1ce6adaa061eb9be3545cd9c7c70 100644
Binary files a/Latest_Group_Project/Booking_System/__pycache__/views.cpython-311.pyc and b/Latest_Group_Project/Booking_System/__pycache__/views.cpython-311.pyc differ
diff --git a/Latest_Group_Project/Booking_System/templates/Booking_System/display_all_clubs.html b/Latest_Group_Project/Booking_System/templates/Booking_System/display_all_clubs.html
index 2d90718d9b81e535984216397269a3a3ccd7c286..322c1b2c0467428e5e50011e8e3e4b62e3c27914 100644
--- a/Latest_Group_Project/Booking_System/templates/Booking_System/display_all_clubs.html
+++ b/Latest_Group_Project/Booking_System/templates/Booking_System/display_all_clubs.html
@@ -17,6 +17,7 @@ Display All Clubs
                     <th>Mobile</th>
                     <th>Email</th>
                     <th>Representative</th>
+                    <th>Actions</th>
                 </tr>
             </thead>
             <tbody>
@@ -29,10 +30,11 @@ Display All Clubs
                             <td>{{ club.contact.mobile }}</td>
                             <td>{{ club.contact.email }}</td>
                             <td>{{ club.representative.first_name }} {{ club.representative.last_name }}</td>
+                            <td><a href="{% url 'decline_club_registration' club.pk %}" class="btn btn-danger">Delete</a></td>
                         </tr>
                     {% endfor %}
                 {% else %}
-                    <td>You have currently no clubs recorded.</td>
+                    <td colspan="7">You have currently no clubs recorded.</td>
                 {% endif %}
             </tbody>
         </table>
diff --git a/Latest_Group_Project/Booking_System/templates/Booking_System/manage_student_account.html b/Latest_Group_Project/Booking_System/templates/Booking_System/manage_student_account.html
index 3fb0fa7b98f1b539b8aa3595964e968c8d9fc6da..cd808008db09898ae994e4a8111ad6912aa96286 100644
--- a/Latest_Group_Project/Booking_System/templates/Booking_System/manage_student_account.html
+++ b/Latest_Group_Project/Booking_System/templates/Booking_System/manage_student_account.html
@@ -25,7 +25,6 @@ Manage Account
                     <th>First Name</th>
                     <th>Last Name</th>
                     <th>Email</th>
-                    <th>Credit</th>
                     <th>Actions</th>
                 </tr>
             </thead>
@@ -36,14 +35,10 @@ Manage Account
                             <td>{{ student.user.username }}</td>
                             <td>{{ student.user.first_name }}</td>
                             <td>{{ student.user.last_name }}</td>
-                            <td>{{ student.user.email }}</td>
-                            <td>{{ student.credit_left }}</td>     
+                            <td>{{ student.user.email }}</td> 
                             <td>
                                 <a href="{% url 'edit_account' student.user.id  %}" class="btn btn-primary">Edit</a>
                                 <a href="{% url 'delete_account' student.user.id  %}" class="btn btn-danger">Delete</a>
-                                <a href="{% url 'provide_discount' student.user.id  %}" class="btn btn-success">Provide Discount</a>
-                                <a href="{% url 'remove_discount' student.user.id  %}" class="btn btn-danger">Remove Discount</a>
-                                {% comment %} <a href="{% url 'view_monthly_statement_manager' account_id=account.pk %}" class="btn btn-info">View</a> {% endcomment %}
                             </td>
                         </tr>
                     {% endfor %}
diff --git a/Latest_Group_Project/Booking_System/views.py b/Latest_Group_Project/Booking_System/views.py
index 971c570889ec12a3f9e8fce9db8cd034674ece80..d7d31764a0c40a9038ad151e0141e90fb60ba65c 100644
--- a/Latest_Group_Project/Booking_System/views.py
+++ b/Latest_Group_Project/Booking_System/views.py
@@ -76,6 +76,9 @@ def register_tabs(request):
                 Student.objects.create(user=user)
                 messages.success(request, 'Register Request Sent Successfully.')
                 return redirect('home')
+            else:
+                messages.error(request, 'Username Already Exist, Please Try Again!')
+                return redirect('register_tabs')
         elif 'club_submit' in request.POST:
             club_form = ClubForm(request.POST)
             address_form = AddressForm(request.POST)
@@ -132,6 +135,9 @@ def register_tabs(request):
 
                     messages.success(request, 'Club Register Request Sent Successfully.')
                     return redirect('home')
+            else:
+                messages.error(request, 'Invalid Credentials, Please Try Again!')
+                return redirect('register_tabs')
     else:
         user_form = StudentRegisterForm()
         club_form = ClubForm()