PHP Classes

File: demo/app/view/users/edit.tpl

Recommend this page to a friend!
  Classes of Italo Lelis de Vietro   Easy Framework   demo/app/view/users/edit.tpl   Download  
File: demo/app/view/users/edit.tpl
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Easy Framework
Full stack Web application framework with MVC
Author: By
Last change:
Date: 12 years ago
Size: 375 bytes
 

Contents

Class file image Download
{extends file=$layout} {block name=content} <h1>Edit User {$user->username}</h1> <form method="POST" action="{$url.editUser}/{$user->id}"> <label>Nome: </label><input type="text" name="username" value="{$user->username}"/> <button type="submit">Confirmar</button> </form> <hr/> <button onclick="location.href='{$url.users}'">Back to users</button> {/block}