19 lines
266 B
HTML
19 lines
266 B
HTML
<html>
|
|
<head>
|
|
<title>Tela de Login</title>
|
|
</head>
|
|
<body>
|
|
|
|
<form method="POST" action="/login">
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ form.login(size=30) }}
|
|
|
|
{{ form.senha(size=30) }}
|
|
|
|
<button type="submit">Entrar</button>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
</html> |