0

What if I want to display a register and a login form on same page?

Can I do that through url.py or do I have to use multi forms?

yoozer8
  • 6,966
  • 6
  • 47
  • 84
Inforian
  • 1,496
  • 4
  • 18
  • 39

1 Answers1

3

The super-easy-not-so-DRY-way is to just hardwrite the registration-form into the login-template file and POST the data to the registration-url. Works fine for me.

Thomas Schwärzl
  • 8,381
  • 6
  • 40
  • 63