form!
title "Set port-out PIN"
instructions(
	"Your port-out PIN must be between 4 and 10 alphanumeric characters. " \
	"It'll be required when porting your number to another carrier." \
)

field(
	var: "pin",
	type: "text-private",
	label: "Port-out PIN",
	required: true,
	description: "Enter 4-10 alphanumeric characters",
	regex: /\A[\w\d]{4,10}\Z/
)

field(
	var: "confirm_pin",
	type: "text-private",
	label: "Confirm PIN",
	required: true,
	description: "Re-enter the same PIN to confirm",
	regex: /\A[\w\d]{4,10}\Z/
)
