Integrating Login form, registration form and model form

2024-02-13 Thread Janet Anastacia
I am trying to create a Django app such that when a user signs up, she goes to login then sees the form containing the data of the model in my apo.Kindly give me the steps with code example for me to achieve this On Mon, Feb 12, 2024, 12:53 AM Alexander Lyabah wrote: > Hello Django Community,

Multiuser Login and Registration required

2023-05-21 Thread chen...@gmail.com
I need a tutorial from scratch on how new Users can register and login having different forms for HOD, Staff and Student. I need tutorial on Multiusers Thank you -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: Login and Registration

2020-07-27 Thread Maqdum Adewale
Join me on WhatsApp so that i can help 09090879780 On Sun, Jul 19, 2020, 6:39 PM Exactly musty wrote: > Read the doc or follow MDN tutorial > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop

Re: Login and Registration

2020-07-19 Thread Liu Zheng
https://www.youtube.com/playlist?list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p This video series will be helpful On Mon, Jul 20, 2020 at 5:33 AM Anirudh choudhary < anirudhchoudary...@gmail.com> wrote: > You can simply do it by manipulating the context data like > > context = { >

Re: Login and Registration

2020-07-19 Thread Anirudh choudhary
You can simply do it by manipulating the context data like context = { 'form_login':loginform, 'form_signup' :signupform } Thanks On Sun, 19 Jul, 2020, 11:10 PM Exactly musty, wrote: > Read the doc or follow MDN tutorial > > -- > You received this message because you are subscribed to the

Login and Registration

2020-07-19 Thread Exactly musty
Read the doc or follow MDN tutorial -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the

Login and Registration

2020-07-19 Thread Victor Cooper
Can anyone help I need to define login,regitration form from my html template all are in the same page how do i define in my view.py -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from

Re: hi guys i have been having trouble setting up a login and registration page, can anyone please help me

2019-03-13 Thread gauravsrivastava2k17
Please post traceback so that I can know what type of error you are getting On Tuesday, March 12, 2019 at 8:26:04 PM UTC+5:30, abhishek jayalal wrote: > > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

Re: hi guys i have been having trouble setting up a login and registration page, can anyone please help me

2019-03-12 Thread Siddharth Tamang
Can you be specific what errors you are getting? On Tue, Mar 12, 2019 at 8:25 PM abhishek jayalal < abhishekjayalal...@gmail.com> wrote: > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving

hi guys i have been having trouble setting up a login and registration page, can anyone please help me

2019-03-12 Thread abhishek jayalal
-- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com.

[ANN] Simple Django Login and Registration project

2017-12-23 Thread Egor Smolyakov
Hello! The repository URL: https://github.com/egorsmkv/simple-django-login-and-register The project uses the built-in authorization system of Django but adds some new features: - Sign In - via username & password - via email & password - via email or username & password - Sign Up -

Re: How can I create Django web page to connect Facebook login and registration?

2011-03-17 Thread Calvin Spealman
-openid-yahoo-google/ On Thu, Mar 17, 2011 at 11:18 AM, Nge Nge <ngenge.mon...@gmail.com> wrote: > > Hi All! > I want to create Django web project. I have to connect from my Django > project to Facebook via login and registration when user login or > register on my web site. >

Re: How can I create Django web page to connect Facebook login and registration?

2011-03-17 Thread Shawn Milochik
It's easy to create an authentication backend: http://docs.djangoproject.com/en/1.2/topics/auth/#writing-an-authentication-backend If you know (or can figure out) what code you have to write in order to authenticate against Facebook, just drop that code into your custom authentication backend

How can I create Django web page to connect Facebook login and registration?

2011-03-17 Thread Nge Nge
Hi All! I want to create Django web project. I have to connect from my Django project to Facebook via login and registration when user login or register on my web site. Please guide what need for me because I am a beginner on Django and Python. Although I read via online about Django connect

Re: Login during registration

2009-01-21 Thread Alastair Campbell
Thanks Bruno, Looks like out emails crossed in the ether! The error message didn't really help, it was failing at the auth stage, which doesn't help debugging. My colleague had to add debug code to Django auth to figure out the issue. I was just surprised that @login_required didn't check for

Re: Login during registration

2009-01-21 Thread bruno desthuilliers
On 21 jan, 00:27, AlastairC wrote: > Hi everyone, > > I'm trying to create a registration process that includes membership > details and a paypal bit (for a non-profit org), and use the > registration app as the first step. > > However, I'd like to log people in when they

Re: Login during registration

2009-01-21 Thread Alastair Campbell
To answer my own question... I got some help at work, and established that the login was failing because it is using the hashed password, not the raw one. That means that there is no way for me to use the activation stage to log the person in (apart from asking them for their details again). I

Login during registration

2009-01-20 Thread AlastairC
Hi everyone, I'm trying to create a registration process that includes membership details and a paypal bit (for a non-profit org), and use the registration app as the first step. However, I'd like to log people in when they 'activate' (click the link in the email and return to the site). I've

Re: auto-login upon registration

2006-02-10 Thread Adrian Holovaty
On 2/10/06, Jeremy Jones <[EMAIL PROTECTED]> wrote: > I have the following view which adds users to the User table (and > SimpleUserManipulator is a class I've defined). Is there a way I can > automatically login the user once the record is saved? Hey Jeremy, Sure, just do this, after you've