-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
65 lines (55 loc) · 1.83 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
function togglePasswordVisibility() {
var passwordInput = document.getElementById("password");
var icone = document.getElementById("icone");
var p = document.querySelector("span > p");
//Caso o tipo do input seja password (ocultado -> visível)
if (passwordInput.type === "password") {
passwordInput.type = "text";
icone.src = "Source/image/ocultar.png";
p.textContent = "Ocultar senha"
//Caso o tipo do input seja text (visivel -> ocultado)
} else {
passwordInput.type = "password";
icone.src = "Source/image/visivel.png";
p.textContent = "Mostrar senha"
}
}
// Event listener para o botão
document.getElementById('btnRedirect').addEventListener('click', function () {
console.log(window.location.href);
window.location.href = "principal.html";
console.log(window.location.href);
});
// let express = require('express')
// let mysql = require('mysql2')
// let conexao = mysql.createConnection({
// host: 'localhost',
// user: 'root',
// password: '1234',
// database: 'auaufollowstore'
// });
// function togglePasswordVisibility() {
// var passwordInput = document.getElementById("password");
// var icone = document.getElementById("icone");
// var p = document.querySelector("span > p");
// //Caso o tipo do input seja password (ocultado -> visível)
// if (passwordInput.type === "password") {
// passwordInput.type = "text";
// icone.src = "Source/image/ocultar.png";
// p.textContent = "Ocultar senha"
// //Caso o tipo do input seja text (visivel -> ocultado)
// } else {
// passwordInput.type = "password";
// icone.src = "Source/image/visivel.png";
// p.textContent = "Mostrar senha"
// }
// }
// function connectDatabase() {
// console.log('Connection estabilished...')
// conexao.query( // Buscando dados
// 'select * from clientes',
// (erro, result) => {
// console.log(result)
// }
// )
// }