How to manually approve forms submitted by users

Hi there! I have a great idea but struggling with how to make it possible.

On the website I created to database collections: before verification and after verification .
Here is the idea description:

Step 1: Users submit their information through user input fields. Right now it successfully goes to before verification database . This information is not available to other users before verification. I successfully made this step!

Step 2: Admin should make sure that the information from the user is correct. Once he clicks the “approval” button I want the information to transfer from before verification to after verification database that sends information to the dynamic page available to all users. I don’t know how to complete this step.

Can someone tell me how to fix the issue?

this might work.
i’m on ly phone so i don’t have an editor to test atm.

let toTransferID = // add here the _id of the information you want to aprove
wixData.query(“beforeVerification”)
.eq(“_id”, toTransfer")
.find()
.then((result) => {
let toInsert = result.items // not sure if .items needs to be behind it.
wixData . insert ( “afterVerification” , toInsert )
})