{% extends "app/base.html.twig" %}
{% block bundlestyles %}
<link rel="stylesheet" href="{{ asset('app/css/login.css') }}"/>
<link rel="stylesheet" href="{{ asset('front/css/front-provi.css') }}"/>
<style type="text/css">
#slide-out, #menu-slide-out-btn {
display: none;
}
body {
background: #1cb7f9 !important;
}
h1 {
font-size: 30px;
}
button {
color: #1cb7f9 !important;
}
</style>
{% endblock %}
{% block title %}{{ 'reset.password' | trans }}{% endblock %}
{% block body %}
{% for flash_error in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flash_error }}</div>
{% endfor %}
<div class="container">
<div id="login-container">
<div id="login-block">
<img id="ics-logo" src="{{ asset('app/img/oecko-logo.png') }}" alt="Oecko"/>
<h1 class="light">{{ 'reset.password' | trans }}</h1>
{{ form_start(requestForm) }}
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">email</i>
<input type="email" value="{{ field_value(requestForm.email) }}" name="{{ field_name(requestForm.email) }}" id="reset_password_request_form_email" class="form-control" required autofocus>
<label class="active" for="reset_password_request_form[email]">{{ 'profile.mail_address' | trans }}</label>
</div>
</div>
<div>
<br>
<p>{{ 'reset.password.description' | trans }}</p>
<br>
</div>
<button class="waves-effect waves-light btn">{{ 'send.password.reset.email' | trans }}</button>
</div>
</div>
</div>
{{ form_end(requestForm) }}
{% endblock %}
{% block bundlejs %}
<script>
$(document).ready(function() {
Materialize.updateTextFields();
});
</script>
{% endblock %}