more struture and codes for application

This commit is contained in:
Luiz Gustavo Costa (gugabsd)
2013-01-07 16:09:05 -02:00
parent 0c03506c24
commit af4ea865a7
12 changed files with 183 additions and 0 deletions

0
app/templates/404.html Normal file
View File

0
app/templates/base.html Normal file
View File

19
app/templates/login.html Normal file
View File

@@ -0,0 +1,19 @@
<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>