PHP Classes

File: templates/user/edit.html.twig

Recommend this page to a friend!
  Classes of Manolo Salsas   Symfony Create Bundle Skeleton   templates/user/edit.html.twig   Download  
File: templates/user/edit.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Symfony Create Bundle Skeleton
Application to create reusable Symfony Bundles
Author: By
Last change:
Date: 4 years ago
Size: 713 bytes
 

Contents

Class file image Download
{% extends 'base.html.twig' %} {% block body_id 'user_edit' %} {% block main %} <h1>{{ 'title.edit_user'|trans }}</h1> {{ form_start(form) }} {{ form_widget(form) }} <button type="submit" class="btn btn-primary"> <i class="fa fa-save" aria-hidden="true"></i> {{ 'action.save'|trans }} </button> {{ form_end(form) }} {% endblock %} {% block sidebar %} <div class="section"> <a href="{{ path('user_change_password') }}" class="btn btn-lg btn-block btn-danger"> <i class="fa fa-lock" aria-hidden="true"></i> {{ 'action.change_password'|trans }} </a> </div> {{ parent() }} {{ show_source_code(_self) }} {% endblock %}