aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@smile.fr>2015-10-05 22:16:18 +0200
committerNicolas LÅ“uillet <nicolas.loeuillet@smile.fr>2015-10-05 22:16:18 +0200
commitec3ce598f6423fcccd88a4fdd77f817c50bc5ab6 (patch)
tree1897d513ea9f1041e19e29b1e763eb8969f3b51c /src/Wallabag/CoreBundle/Form
parent4c5e5441831430af2b8f49dbeb0c76da6993eceb (diff)
downloadwallabag-ec3ce598f6423fcccd88a4fdd77f817c50bc5ab6.tar.gz
wallabag-ec3ce598f6423fcccd88a4fdd77f817c50bc5ab6.tar.zst
wallabag-ec3ce598f6423fcccd88a4fdd77f817c50bc5ab6.zip
material design for register/login/recover pages
Diffstat (limited to 'src/Wallabag/CoreBundle/Form')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/RegistrationType.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/RegistrationType.php b/src/Wallabag/CoreBundle/Form/Type/RegistrationType.php
deleted file mode 100644
index 47d4f341..00000000
--- a/src/Wallabag/CoreBundle/Form/Type/RegistrationType.php
+++ /dev/null
@@ -1,24 +0,0 @@
1<?php
2
3namespace Wallabag\CoreBundle\Form\Type;
4
5use Symfony\Component\Form\AbstractType;
6use Symfony\Component\Form\FormBuilderInterface;
7
8class RegistrationType extends AbstractType
9{
10 public function buildForm(FormBuilderInterface $builder, array $options)
11 {
12 $builder->add('name');
13 }
14
15 public function getParent()
16 {
17 return 'fos_user_registration';
18 }
19
20 public function getName()
21 {
22 return 'wallabag_user_registration';
23 }
24}