Skip to content

Commit

Permalink
Create index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelhOliveira authored Feb 19, 2024
1 parent 01b5048 commit 5cbf1e7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
document.getElementById('loginForm').addEventListener('submit', function(event) {
event.preventDefault();

var username = document.getElementById('username').value;
var password = document.getElementById('password').value;

// Simulação de autenticação (substitua isso com sua lógica de autenticação real)
if (username === 'usuario' && password === 'senha') {
alert('Login bem-sucedido!');
// Aqui você pode redirecionar o usuário para outra página
} else {
document.getElementById('error-msg').textContent = 'Credenciais inválidas. Por favor, tente novamente.';
}
});

0 comments on commit 5cbf1e7

Please sign in to comment.