Skip to content

Commit b40a939

Browse files
Merge pull request #173 from IABTechLab/eee-UID2-6639-fix-secure-signals-detection-logic-plus-disclaimer
add disclaimer note to all sample pages and hashing tool
2 parents 9f872d9 + b2d9cd7 commit b40a939

17 files changed

Lines changed: 41 additions & 7 deletions

File tree

tools/hashing-tool/app.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,14 @@ h2 {
154154
line-height: 1.8;
155155
}
156156

157+
/* Section summary - same styling as intro but gray */
158+
p.section-summary {
159+
font-size: 0.95rem;
160+
color: var(--text-gray);
161+
margin-bottom: 1rem;
162+
line-height: 1.8;
163+
}
164+
157165
a {
158166
color: var(--link-color);
159167
text-decoration: underline;

tools/hashing-tool/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ <h1>${IDENTITY_NAME} Hashing Tool</h1>
162162
</div>
163163

164164
<h2>Results</h2>
165-
165+
<p class="section-summary"><strong>Note:</strong> This is a test-only environment—no data is collected. Use test values only.</p>
166+
166167
<table id="results_table">
167168
<tr id="normalization">
168169
<td class="label">

web-integrations/google-secure-signals/client-side/html/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ <h1>Client-Side ${IDENTITY_NAME} Integration with Google Secure Signals</h1>
3535

3636
<!-- UID2 Integration Status Section -->
3737
<h2>${IDENTITY_NAME} Integration Status</h2>
38+
<p class="section-summary"><strong>Note:</strong> This is a test-only integration environment—it does not collect data or generate production-level tokens.</p>
3839

3940
<table id="uid_state">
4041
<tr>

web-integrations/google-secure-signals/react-client-side/src/SecureSignalsApp.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,7 @@ const SecureSignalsApp = () => {
430430

431431
{/* UID2 Integration Status Section */}
432432
<h2>{IDENTITY_NAME} Integration Status</h2>
433+
<p className="section-summary"><strong>Note:</strong> This is a test-only integration environment—it does not collect data or generate production-level tokens.</p>
433434

434435
<table id="uid_state">
435436
<tbody>

web-integrations/javascript-sdk/client-server/public/stylesheets/app.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,14 @@ p {
135135
line-height: 1.8;
136136
}
137137

138+
/* Section summary - same styling as intro but gray */
139+
p.section-summary {
140+
font-size: 0.95rem;
141+
color: var(--text-gray);
142+
margin-bottom: 1rem;
143+
line-height: 1.8;
144+
}
145+
138146
a {
139147
color: var(--link-color);
140148
text-decoration: underline;
@@ -150,7 +158,7 @@ a:hover {
150158
#uid_state {
151159
width: 100%;
152160
border-collapse: collapse;
153-
margin: 2rem 0;
161+
margin: 0 0 2rem 0;
154162
font-size: 0.875rem;
155163
border: 1px solid var(--border-color);
156164
border-radius: 8px;

web-integrations/javascript-sdk/client-server/views/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
</div>
9797

9898
<h2><%- identityName %> Integration Status</h2>
99+
<p class="section-summary"><strong>Note:</strong> This is a test-only integration environment—it does not collect data or generate production-level tokens.</p>
99100

100101
<table id="uid_state">
101102
<tr>

web-integrations/javascript-sdk/client-side/html/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ <h1>Client-Side ${IDENTITY_NAME} Integration Example using JavaScript SDK</h1>
106106
</div>
107107

108108
<h2>${IDENTITY_NAME} Integration Status</h2>
109+
<p class="section-summary"><strong>Note:</strong> This is a test-only integration environment—it does not collect data or generate production-level tokens.</p>
109110

110111
<table id="uid_state">
111112
<tr>

web-integrations/javascript-sdk/client-side/html/stylesheets/app.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ a:hover {
173173
#uid_state {
174174
width: 100%;
175175
border-collapse: collapse;
176-
margin: 2rem 0;
176+
margin: 0 0 2rem 0;
177177
font-size: 0.875rem;
178178
border: 1px solid var(--border-color);
179179
border-radius: 8px;
@@ -351,7 +351,7 @@ a:hover {
351351
color: white;
352352
padding: 10px;
353353
border-radius: 4px;
354-
font-size: 0.75rem;
354+
font-size: 0.7rem;
355355
line-height: 1.125;
356356
min-width: 300px;
357357
max-width: 570px;

web-integrations/javascript-sdk/react-client-side/src/ClientSideApp.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,8 @@ const ClientSideApp = () => {
139139
)}
140140

141141
<h2>{IDENTITY_NAME} Integration Status</h2>
142+
<p className="section-summary"><strong>Note:</strong> This is a test-only integration environment—it does not collect data or generate production-level tokens.</p>
143+
142144
<table id="uid_state">
143145
<tbody>
144146
<tr>

web-integrations/javascript-sdk/react-client-side/src/styles/app.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,14 @@ p {
150150
line-height: 1.8;
151151
}
152152

153+
/* Section summary - same styling as intro but gray */
154+
p.section-summary {
155+
font-size: 0.95rem;
156+
color: var(--text-gray);
157+
margin-bottom: 1rem;
158+
line-height: 1.8;
159+
}
160+
153161
a {
154162
color: var(--link-color);
155163
text-decoration: underline;
@@ -165,7 +173,7 @@ a:hover {
165173
#uid_state {
166174
width: 100%;
167175
border-collapse: collapse;
168-
margin: 2rem 0;
176+
margin: 0 0 2rem 0;
169177
font-size: 0.875rem;
170178
border: 1px solid var(--border-color);
171179
border-radius: 8px;

0 commit comments

Comments
 (0)