Skip to content

Instantly share code, notes, and snippets.

@willmendesneto
Last active December 11, 2015 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willmendesneto/4551051 to your computer and use it in GitHub Desktop.
Save willmendesneto/4551051 to your computer and use it in GitHub Desktop.
Inserindo Twig Template Engine no Codeigniter via Composer Localilzação dos arquivos: index.html.twig => application/views/index.html.twig
{% extends 'template.html.twig' %}
{% block content %}
{{ title }}
<div id="infoMessage">{{ message }}</div>
<div class="row">
<div class="span4 offset4">
<h1 class="offset1">Login</h1>
<p>Please login with your email/username and password below.</p>
{{ form_open('auth/login', 'class="well center"')|raw }}
<div class="input-prepend">
<label for="password">Username:</label>
<span class="add-on"><i class="icon-user"></i></span>
{{ form_input( identity, 'username', 'class="input-xlarge" placeholder="username" autofocus="true"' )|raw }}
</div>
<div class="input-prepend">
<label for="password">Password:</label>
<span class="add-on"><i class="icon-lock"></i></span>
{{ form_password( password, 'password', 'class="input-xlarge" placeholder="password" autofocus="true"' )|raw }}
</div>
<div class="input-prepend">
<label for="remember">Remember Me:</label>
{{ form_checkbox('remember', '1', FALSE, 'id="remember"')|raw }}
</div>
{{ form_submit('submit', 'Login', 'class="btn btn-primary"')|raw }}
{{ form_close()|raw }}
<p><a href="/testtwig/forgot_password">Forgot your password?</a></p>
</div>
</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment