(juste en dessous des badges sympatiques à placer)
Une petite description du projet
Entrez ici les instructions pour bien débuter avec votre projet...
| <!DOCTYPE html> | |
| <html lang="fr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Title</title> | |
| </head> | |
| <body> | |
| <h1>Junior entreprise</h1> | |
| </body> |
| {% extends 'form_div_layout.html.twig' %} | |
| {% block form_row -%} | |
| <div class="row{% if (not compound or force_error|default(false)) and not valid %} has-error{% endif %}"> | |
| <div class="input-field col s12"> | |
| {{- form_widget(form) -}} | |
| {{- form_label(form) -}} | |
| {{- form_errors(form) -}} | |
| </div> | |
| </div> |
| double mapf(double val, double in_min, double in_max, double out_min, double out_max) { | |
| return (val - in_min) * (out_max - out_min) / (in_max - in_min) + out_min; | |
| } |