andy2013
andy2013

Reputation: 55

django 1.7 User Registration form with profile picture

Is it possible to create a user registration form in Django which extends the default user model to include a user profile picture/avatar? Ive seen quite a few answers on here but I get lost on how to implement these when it comes to submitting the form?

I use Twitter Bootstrap to create the form in HTML since I do not like the default Django CSS offers.

Upvotes: 0

Views: 1384

Answers (1)

Mulagala
Mulagala

Reputation: 8661

Yes it is possible, check the below link for registering user with profile picture

Register user

and for integrating with bootstrap on the same site you can find this

integrate with bootstrap

Upvotes: 1

Related Questions