@{ Html.RenderWidget("gdpr_consent"); }
diff --git a/src/Presentation/SmartStore.Web/Views/Product/AskQuestion.cshtml b/src/Presentation/SmartStore.Web/Views/Product/AskQuestion.cshtml
index 7594c9ae57..5c7cc79ddb 100644
--- a/src/Presentation/SmartStore.Web/Views/Product/AskQuestion.cshtml
+++ b/src/Presentation/SmartStore.Web/Views/Product/AskQuestion.cshtml
@@ -60,6 +60,12 @@
@Html.ValidationMessageFor(model => model.Question, null, new { @class = "text-danger" })
+
+
@{ Html.RenderWidget("gdpr_consent"); }
@if (Model.DisplayCaptcha)
diff --git a/src/Presentation/SmartStore.Web/Views/Product/EmailAFriend.cshtml b/src/Presentation/SmartStore.Web/Views/Product/EmailAFriend.cshtml
index 5e446d75ee..7c45610a27 100644
--- a/src/Presentation/SmartStore.Web/Views/Product/EmailAFriend.cshtml
+++ b/src/Presentation/SmartStore.Web/Views/Product/EmailAFriend.cshtml
@@ -28,13 +28,13 @@
- @Html.LabelFor(model => model.FriendEmail, new { @for = "FriendEmail" })
+ @Html.LabelFor(model => model.FriendEmail, new { @for = "FriendEmail", @class = "col-form-label required" })
@Html.TextBoxFor(model => model.FriendEmail, new { @class = "fullname form-control", placeholder = T("Products.EmailAFriend.FriendEmail.Hint") })
@Html.ValidationMessageFor(model => model.FriendEmail, null, new { @class = "text-danger" })
- @Html.LabelFor(model => model.YourEmailAddress, new { @for = "YourEmailAddress" })
+ @Html.LabelFor(model => model.YourEmailAddress, new { @for = "YourEmailAddress", @class = "col-form-label" })
@if (Model.AllowChangedCustomerEmail)
{
@Html.TextBoxFor(model => model.YourEmailAddress, new { @class = "fullname form-control", placeholder = T("Products.EmailAFriend.YourEmailAddress.Hint") })
@@ -47,11 +47,17 @@
- @Html.LabelFor(model => model.PersonalMessage, new { @for = "PersonalMessage" })
+ @Html.LabelFor(model => model.PersonalMessage, new { @for = "PersonalMessage", @class = "col-form-label" })
@Html.TextAreaFor(model => model.PersonalMessage, new { @class = "personal-message form-control", placeholder = T("Products.EmailAFriend.PersonalMessage.Hint") })
@Html.ValidationMessageFor(model => model.PersonalMessage, null, new { @class = "text-danger" })
+
+
@{ Html.RenderWidget("gdpr_consent"); }
@if (Model.DisplayCaptcha)
diff --git a/src/Presentation/SmartStore.Web/Views/Product/Reviews.cshtml b/src/Presentation/SmartStore.Web/Views/Product/Reviews.cshtml
index 4314b61d2f..563fbcab8e 100644
--- a/src/Presentation/SmartStore.Web/Views/Product/Reviews.cshtml
+++ b/src/Presentation/SmartStore.Web/Views/Product/Reviews.cshtml
@@ -58,19 +58,25 @@