1234567891011121314151617181920 |
- <html>
- <head>
- <title>Formulário</title>
- <meta charset="utf-8"/>
- {% assets filters="jsmin", output="gen/packed.css",
- "css/form.css", "css/text.css" %}
- <link rel="stylesheet" href="{{ ASSET_URL }}"/>
- {% endassets %}
- </head>
- <body>
- <div id="blocao">
- <form>
- <h1>ENTRAR</h1>
- <input type="text" placeholder="USUÁRIO">
- <input type="password" placeholder="SENHA">
- <input type=submit value="ENTRAR">
- </form>
- </div>
- </body>
- </html>
|