96 lines
1.9 KiB
HTML
96 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pt-Br">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
|
<link href="./Estilo_SC.css" rel="stylesheet">
|
|
<link href="./Adapitacao_SC.css" rel="Stylesheet">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="fundo centralizar">
|
|
|
|
|
|
|
|
<main>
|
|
|
|
|
|
<div>
|
|
|
|
<div class="Bloco">
|
|
|
|
|
|
<div class="logo">
|
|
<img src="./Acessts_SC/logo_2.png" width="150px" height="150px">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<form name="formLogin" id="formLogin" method="post" action="login.jsp">
|
|
|
|
|
|
<div class="login_central">
|
|
|
|
<h1>
|
|
Login
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
|
|
<div class="Login">
|
|
|
|
|
|
<label class="Login_label" >Endereço de Email:</label><br>
|
|
|
|
<input class="Login_input" type="text" name="usuario" id="usuario" size="20" placeholder="Email"
|
|
required autofocus>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="Senha">
|
|
|
|
|
|
<label class="Senha_label">Senha:</label><br>
|
|
|
|
<input class="Senha_input" type="password" name="password" id="password" size="20"
|
|
placeholder="Escreva uma senha forte" required>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
<button class="botao" type="sbumit" id="submit" name="submit">Ok</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script language="javascript">
|
|
document.getElementById("usuario").focus();
|
|
</script>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html> |