Coder Social home page Coder Social logo

greatkart-course's Issues

Login

Even if I wrote the same code for login, it says invalid credentials even though they are correct. Can you help me out with that?

def login(request):
if request.method == 'POST':
email = request.POST['email']
password = request.POST['password']

    user = auth.authenticate(email=email, password=password)

    if user is not None:
        auth.login(request, user)
        # messages.success(request, 'You are now logged in.')
        return redirect('home')
    else:
        messages.error(request, 'Invalid login credentials')
        return redirect('login')

return render(request, 'accounts/login.html')

Want direct checkout

I just want to make my website direct checkout enable. So please help me if possible.

products_by_category

Hi Rathankumar,

I have taken your Django e commerce course. Its was wonderful as of now
will you say why products_by_category it was used.
I searched over project level

def get_url(self):
return reverse('products_by_category', args=[self.slug])

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.