Django import

Django import
This commit is contained in:
Alex Lewis
2012-09-28 21:05:33 +10:00
parent 0cd92dfa9f
commit b0eb5ba9e1
118 changed files with 12494 additions and 11290 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace BodyRep\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
class Profile extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('fullname', 'text');
//$builder->add('newpass1', 'text');
//$builder->add('newpass2', 'text');
}
public function getName()
{
return 'profile';
}
}