Created
December 16, 2019 16:58
-
-
Save deividsoncs/4f7e86ff77d803099ba0a357b7c31358 to your computer and use it in GitHub Desktop.
Página onde o captcha ficará acessivel.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h:panelGroup id="pnl_captcha" rendered="#{comunitarioBean.captchaVisivel}"> | |
<div class="row center"> | |
<p:graphicImage id="img_captcha" value="#{captchaBean.captcha}" cache="false" style="border-radius: 10px"/> | |
<p:commandButton class="oButton" icon="ui-icon-refresh" process="@this" update="img_captcha" title="Atualiza imagem do captcha!"/> | |
<p:inputText id="it_captcha" value="#{comunitarioBean.captcha}" style="max-width: 85px"> | |
<p:ajax process="@this" partialSubmit="true" update="@this"/> | |
</p:inputText> | |
<p:watermark for="it_captcha" value="Digite aqui!"/></div> | |
<div class="row center"> | |
<small style="font-weight: bold; color: #000">obs.: Digite os caracteres da imagem acima!</small></div> | |
</h:panelGroup> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment