Created
June 23, 2019 15:21
-
-
Save lucas404x/c68016104053cc7d50409e1f068fad44 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="pt-br" > | |
<head> | |
<meta charset="UTF-8"> | |
<title>Formulário de Login</title> | |
<link rel="stylesheet" href="{{ url_for('static', | |
filename="css/style.css") }}"> | |
</head> | |
<body> | |
<div class="container" > | |
<a class="links" id="paracadastro"></a> | |
<a class="links" id="paralogin"></a> | |
<div class="content"> | |
<!--FORMULÁRIO DE LOGIN--> | |
<div id="login"> | |
<form method="post" action=""> | |
<h1>Login</h1> | |
<p> | |
<label for="email_login">Seu email</label> | |
<input id="email_login" name="email_login" required="required" type="text" placeholder="Email"/> | |
</p> | |
<p> | |
<label for="senha_login">Sua senha</label> | |
<input id="senha_login" name="senha_login" required="required" type="password" placeholder="Senha" /> | |
</p> | |
<p> | |
<input type="checkbox" name="manterlogado" id="manterlogado" value="" /> | |
<label for="manterlogado">Manter-me logado</label> | |
</p> | |
<p> | |
<input type="submit" value="Logar" /> | |
</p> | |
<p class="link"> | |
Ainda não tem conta? | |
<a href="/cadastro">Cadastre-se</a> | |
</p> | |
</form> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment