Last active
December 11, 2015 05:18
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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