diff --git a/src/plainui/jinja2/plainui/redeem_token.html b/src/plainui/jinja2/plainui/redeem_token.html
index 96cb168eafae02adbd40284a3b83f161faf2372b..c0de89b6c6d9b4028607d8b57f80e2c80d154a23 100644
--- a/src/plainui/jinja2/plainui/redeem_token.html
+++ b/src/plainui/jinja2/plainui/redeem_token.html
@@ -5,7 +5,7 @@
     {{ titleMacro.title(_("Redeem Token")) }}
 
     {% if step == 'authenticated' %}
-    <form class="border p-6 my-8 border-tertiary" method="POST" action="{{ url('plainui:redeem_token_loggedin', conf_slug=conf.slug) }}">
+    <form class="border p-6 my-8" method="POST" action="{{ url('plainui:redeem_token_loggedin', conf_slug=conf.slug) }}">
         <h2 class="text-center bg-info p-3 text-white h3">{{ _("You are Logged in as '%(user)s', do you want to join the Conference with this User?", user=user.username) }}</h2>
         {{ csrf_input }}
         <input type="hidden" name="token" value="{{ form['jwt'].value() }}">
diff --git a/src/plainui/jinja2/plainui/report_content.html b/src/plainui/jinja2/plainui/report_content.html
index 4a171fc05a56a8ba3f414cf2df98263f7fbcc4f4..0715219cf7eb1e59f48bdb11871a7c649d828488 100644
--- a/src/plainui/jinja2/plainui/report_content.html
+++ b/src/plainui/jinja2/plainui/report_content.html
@@ -5,7 +5,7 @@
 {% block content %}
     {{ titleMacro.title(_("Help, there is a Problem...")) }}
 
-    <form method="POST" id="report_content" class="border p-6 mt-11 mb-8{% if form.errors %} border-danger{% else %} border-tertiary{% endif %}">
+    <form method="POST" id="report_content" class="border p-6 mt-11 mb-8{% if form.errors %} border-danger{% endif %}">
         <h1 class="text-center bg-info p-3 text-white h3">{{_("Report Content")}}</h1>
 
         {{ csrf_input }}