diff --git a/silkaj/membership.py b/silkaj/membership.py
index c28be501773d7039ddddcc39cbcb6299bc2da34d..c4fcf34de257845d96b5decce257f15eb4a2dd97 100644
--- a/silkaj/membership.py
+++ b/silkaj/membership.py
@@ -135,10 +135,10 @@ async def display_confirmation_table(identity_uid, pubkey, identity_timestamp):
         expiration = pendulum.now().add(seconds=pending_expires).diff_for_humans()
         table.append(["Pending membership documents will expire", expiration])
 
-    table.append(["Identity uid", identity_uid])
-    table.append(["Pubkey", pubkey])
+    table.append(["User Identifier (UID)", identity_uid])
+    table.append(["Public Key", pubkey])
 
-    table.append(["Identity block UID", identity_timestamp])
+    table.append(["Block Identity", identity_timestamp])
 
     block = await client(bma.blockchain.block, identity_timestamp.number)
     table.append(
diff --git a/tests/test_membership.py b/tests/test_membership.py
index 046d401ad27d49fce3dd974a4bc2fb7609d986a8..24789b6660460ddc8b5782e2acc6385f9f0df65e 100644
--- a/tests/test_membership.py
+++ b/tests/test_membership.py
@@ -212,10 +212,10 @@ async def test_display_confirmation_table(
         expiration = pendulum.now().add(seconds=pending_expires).diff_for_humans()
         table.append(["Pending membership documents will expire", expiration])
 
-    table.append(["Identity uid", identity_uid])
-    table.append(["Pubkey", pubkey])
+    table.append(["User Identifier (UID)", identity_uid])
+    table.append(["Public Key", pubkey])
 
-    table.append(["Identity block UID", identity_timestamp])
+    table.append(["Block Identity", identity_timestamp])
 
     block = await client(bma.blockchain.block, identity_timestamp.number)
     table.append(