24 lines
625 B
HTML
24 lines
625 B
HTML
<!DOCTYPE html>
|
|
<html lang="pt-BR">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Login</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Login</h2>
|
|
<form id="loginForm">
|
|
<label for="emailInput">E-mail:</label>
|
|
<input type="email" id="emailInput" name="email" required>
|
|
|
|
<label for="passwordInput">Senha:</label>
|
|
<input type="password" id="passwordInput" name="password" required>
|
|
|
|
<button type="submit">Entrar</button>
|
|
</form>
|
|
</div>
|
|
|
|
<script src="menu.js"></script>
|
|
</body>
|
|
</html> |