upload.html 502 B

1234567891011121314151617181920
  1. <html>
  2. <head>
  3. <title>Formulário</title>
  4. <meta charset="utf-8"/>
  5. {% assets filters="jsmin", output="gen/packed.css",
  6. "css/form.css", "css/text.css" %}
  7. <link rel="stylesheet" href="{{ ASSET_URL }}"/>
  8. {% endassets %}
  9. </head>
  10. <body>
  11. <div id="blocao">
  12. <form>
  13. <h1>ENTRAR</h1>
  14. <input type="text" placeholder="USUÁRIO">
  15. <input type="password" placeholder="SENHA">
  16. <input type=submit value="ENTRAR">
  17. </form>
  18. </div>
  19. </body>
  20. </html>