Hi @simoesj
Welcome to the Auth0 Community!
May I ask why do you need to track the click on that specific custom block?
Unfortunately, there is no method in which you are able to track if a form button is being clicked or to set a count to that. Otherwise, you can assign a flow to the specific custom block to be executed after the click if you need to set a variable within the user profile. Also, inside the action window, you can access form elements by using something like
event.prompt.fields.customFieldName
If you wish to verify the email of a new user without using a form, you can go to the Database connection that you are using for your application, go to Attributes → Email → Configure and select either OTP or Verification Link.
By selecting OTP, the users will be forced to verify the email on signup. By using the verification link, the user will be sent an email and allowed to authenticate.
As an alternative solution, by using an action you can create a job to send an email verification email if the email_verified
is set to false.
If any of the solution above are not suitable or if you have any other questions, let me know!
Kind Regards,
Nik