NOW("DD-MM-YYYY"); How do I use this to create a datetime record upon registration

I am setting up a registration page where the user key in the def , user email, name, pass, confirm pass and creating a record with the button

How do I assign a ‘datetime now()’ function upon registration (when the button is clicked)

Assigning NOW() in ‘FORMULA’ tell me that it is incompatible

Before:
{created: data.user_created.created, Fullname: pageVars.name, id: “”, Password: pageVars.pass, Username: pageVars.email}

After:
{created: data.user_created.created(NOW(“DD-MM-YY”)), Fullname: pageVars.name, id: “”, Password: pageVars.pass, Username: pageVars.email}

I am probably missing something, kinda new here

Try this…

FORMAT_DATETIME_LOCAL(DATETIME(data.user_created.created), “MM-DD-YY @ HH:mm”)