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
  • 7,361
  • 7
  • 58
  • 93
Inforian
  • 1,716
  • 5
  • 21
  • 42

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
  • 9,518
  • 6
  • 43
  • 69