Atividade Desenvolvimento JavaScript
Atividade Desenvolvimento JavaScript
DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Validação de E-mail</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f9;
.container {
padding: 20px;
border-radius: 8px;
background-color: #fff;
.error-message {
color: red;
font-size: 14px;
margin-top: 5px;
}
</style>
</head>
<body>
<div class="container">
<h2>Validação de E-mail</h2>
<form id="emailForm">
<button type="submit">Enviar</button>
</form>
</div>
<script>
document.getElementById('emailForm').addEventListener('submit', function
(event) {
if (!emailPattern.test(emailInput.value)) {
} else {
errorMessage.textContent = '';
alert('E-mail válido!');
});
</script>
</body>
</html>