Skip to content

Instantly share code, notes, and snippets.

@Sutil
Last active December 30, 2015 23:58
Show Gist options
  • Save Sutil/7903933 to your computer and use it in GitHub Desktop.
Save Sutil/7903933 to your computer and use it in GitHub Desktop.
Validação de e-mail no front-end com JSF
<p:inputText id="email" value="#{usuarioViewBean.usuario.email}" validatorMessage="Email inválido" >
<f:validateRegex
pattern="^[_A-Za-z0-9-\+]+(\.[_A-Za-z0-9-]+)*@[A-Za-z0-9-]+(\.[A-Za-z0-9]+)*(\.[A-Za-z]{2,})$" />
</p:inputText>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment