Giter Club home page Giter Club logo

Comments (7)

foo290 avatar foo290 commented on May 29, 2024 3

in your register function in views.py

from verify_email.email_handler import send_verification_email

def register_view(request):
    form = CustomCreationForm(request.POST or None, request.FILES or None)
    if form.is_valid():
        inactive_user = send_verification_email(request, form) # https://pypi.org/project/Django-Verify-Email/ Step 4
        # form.save(request)  =========================================>>> REMOVE THISSSSSS!!
        messages.add_message(request, SUCCESS, _('Thank you for registering.'))
        return redirect('login_view')
    context = {
        'form': form
    }
    return render(request, 'signup.html', context)

from django-verify-email.

xAli-1 avatar xAli-1 commented on May 29, 2024 2

Try removing or commenting out your form.save(request) line. The verify_email package handles everything you need. Your IDE will also show/say inactive_user isn't used because it isn't.

Verification Successful!

from django-verify-email.

bgorman87 avatar bgorman87 commented on May 29, 2024 1

Try removing or commenting out your form.save(request) line. The verify_email package handles everything you need. Your IDE will also show/say inactive_user isn't used because it isn't.

from django-verify-email.

bgorman87 avatar bgorman87 commented on May 29, 2024

From line 101 in views.py

except InvalidToken:
       return render(
           request,
           template_name=failed_template,
           context={
               'msg': 'This link is invalid or been used already, we cannot verify using this link.',
               'status': 'Invalid Link',
           }
       )

Something about your configuration isn't validating the token from what I can tell. Not entirely sure what would cause that. Have you edited the email handler, or any of the url settings, or anything to do with the verify_email package?

from django-verify-email.

xAli-1 avatar xAli-1 commented on May 29, 2024

i got the same code from line 105.

i didn't do any thing in .venv/lib/python3.8/site-packages/verify_email/
i am new to Django i barely can follow instructions from https://pypi.org/project/Django-Verify-Email/

my users.views.py

from verify_email.email_handler import send_verification_email

def register_view(request):
    form = CustomCreationForm(request.POST or None, request.FILES or None)
    if form.is_valid():
        inactive_user = send_verification_email(request, form) # https://pypi.org/project/Django-Verify-Email/ Step 4
        form.save(request)
        messages.add_message(request, SUCCESS, _('Thank you for registering.'))
        return redirect('login_view')
    context = {
        'form': form
    }
    return render(request, 'signup.html', context)

but i got an error form my code editor: "inactive_user" is not accessed Pylance

from django-verify-email.

foo290 avatar foo290 commented on May 29, 2024

form.save(request) can u not save the form manually?

form is saved automatically after user is marked as inactive at the time of registration hence before verification

from django-verify-email.

xAli-1 avatar xAli-1 commented on May 29, 2024

how can i fix it.
i am new to Django and programing.

from django-verify-email.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.