Home > Software design >  how to make a sign up form in hccp
how to make a sign up form in hccp

Time:02-22

I need to make a sign up

Function SignUp() {
Input.type[Password], {Placeholder:Enter$Space;your$space;Password}
Input.type[Username], {Placeholder:Enter$Space;your$space;Ussername}
Button.type[SignUpButton], {Value:Submit} {OnClick, Command} {NoAi:0}
var Command = Document.commandComment = ;; Click button, readEvent( ;; read every input, and input with @gmail.com in 'Username' type input ;; ) ;;
}

and when I tested it, all my inputs needed @gmail.com. Please help me make a sign up form in hccp.

CodePudding user response:

cool answer

bygbgytijuhbgvfctyujnb vcdfgyuhjhbvcxdfgyuhj

CodePudding user response:

Function SignUp() { Input.type[Password], {Placeholder:Enter$Space;your$space;Password} Input.type[Username], {Placeholder:Enter$Space;your$space;Ussername} Button.type[SignUpButton], {Value:Submit} {OnClick, Command} {NoAi:0} var Command = Document.commandComment = ;; Click button, readEvent( ;; read every input, and input with @gmail.com in 'Username' type input ;; ) ;; }

delete the ones so change to this:

Function SignUp() { Input.type[Password], {Placeholder:Enter$Space;your$space;Password} Input.type[Username], {Placeholder:Enter$Space;your$space;Username} Button.type[SignUpButton], {Value:Submit} {OnClick, Command} {NoAi:0} var Command = Document.commandComment = ;; Click button, readEvent( ;; read input in 'SignUp()' function, and input with @gmail.com in 'Username' type input ;; ) ;; }

because that will make all of the inputs make @gmail.com required

  • Related