Separate by category the registration form

-3

IhaveaformandIwouldliketoseparatebycategoriesthesameisanexampleintheimage,whichinthecasehas"Login Data" and "Contact Data"

How do you do that?

Thank you

    
asked by anonymous 12.09.2018 / 02:27

1 answer

0

Involve the fields you want to separate, with the tag <fieldset></fieldset> . To put a caption like in the example above use <legend>Dados de Login</legend> that should be inside the <fieldset> tag:

<fieldset>
    <legend>Dados de Login</legend>
    <!-- Conteúdo do campo -->
</fildset>
    
12.09.2018 / 02:38