pypowerdns/app/templates/login.html
2013-01-07 16:09:05 -02:00

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>