Eliseu Amaro
b3d582f665
[TWIG] Cards are now divided into blocks and macros, additional macros done, attachments page no longer inside cards directory [CARDS][Navigation] Now using macros to create section, details, and nav elements
53 lines
2.4 KiB
Twig
53 lines
2.4 KiB
Twig
{% extends 'stdgrid.html.twig' %}
|
|
|
|
{% block title %}{{ "Log in!" | trans }}{% endblock %}
|
|
|
|
{% block body %}
|
|
<section class="frame-section">
|
|
<form class="section-form" method="post">
|
|
<fieldset class="container-block">
|
|
<legend class="section-form-legend">{{ "Login" | trans }}</legend>
|
|
|
|
{% if error %}
|
|
<label class="alert alert-danger">
|
|
{{ error.getMessage() }}
|
|
</label>
|
|
{% endif %}
|
|
|
|
{% if app.user %}
|
|
<span>
|
|
{{ "You are logged in as" | trans }} {{ app.user.username }}.
|
|
<button class="btn btn-lg btn-primary">
|
|
<a href="{{ path('app_logout') }}">{{ "Logout" | trans }}</a>
|
|
</button>
|
|
</span>
|
|
{% else %}
|
|
<div class="form-row">
|
|
<label class="section-form-label" for="inputNicknameOrEmail">{{ "Nickname or Email" | trans }}</label>
|
|
<input type="text" value="{{ last_login_id }}" name="_username" id="inputNicknameOrEmail" class="form-control" required autofocus>
|
|
<p class="help-text">{{ "Your nickname or email address." | trans }}</p>
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
<label class="section-form-label" for="inputPassword">{{ "Password" | trans }}</label>
|
|
<input type="password" name="_password" id="inputPassword" class="form-control" required>
|
|
<p class="help-text">{{ "Your account's password." | trans }}</p>
|
|
</div>
|
|
|
|
<span class="form-row-checkbox">
|
|
<label for="inputRememberMe">{{ "Remember me" | trans }}</label>
|
|
<input type="checkbox" name="_remember_me" id="inputRememberMe">
|
|
</span>
|
|
|
|
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">
|
|
<div>
|
|
<button id="signIn" class="btn btn-lg btn-primary" type="submit">Sign in</button>
|
|
</div>
|
|
{% endif %}
|
|
</fieldset>
|
|
</form>
|
|
</section>
|
|
{% endblock body %}
|
|
|
|
{% block javascripts %}{% endblock %}
|