42
| <![CDATA[<style type="text/css">
.show, .hide{
right: 14px;
left: unset!important;
}
.hide{
display: none;
}
</style>]]>
|
62
| <![CDATA[<style type="text/css">
.loading{
font-family: Arial;
width: 100vw;
height: 100vh;
background: #FFF;
color: #555;
font-size: 18px;
position: fixed;
top: 0;
left: 0;
justify-content: center;
align-items: center;
text-align: center;
display: none;
z-index: 5000;
}
</style>]]>
|
52
| <![CDATA[<input type="submit" name="enviar" value="Conectar" onclick="loading()">]]>
|
88
| <![CDATA[<script type="text/javascript">
function loading(){
document.querySelector('.loading').style.display = "flex";
}
// Mostra/Esconde senha
var passwordField = document.querySelector('.password');
var show = document.querySelector('.show');
var hide = document.querySelector('.hide');
show.onclick = function(){
passwordField.setAttribute("type", "text");
show.style.display = "none";
hide.style.display = "block";
}
hide.onclick = function(){
passwordField.setAttribute("type", "password");
show.style.display = "block";
hide.style.display = "none";
}
</script>]]>
|
116
| <![CDATA[<script>
grecaptcha.ready(function() {
grecaptcha.execute('6LcfKagbAAAAANEZaXK2aorErA12Tjdt6EvMM7Mc', {action: 'homepage'}).then(function(token) {
document.getElementById("g-token").value = token;
});
});
</script>]]>
|