You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

8 lines
267 B

  1. from django.shortcuts import render
  2. from django.contrib import messages
  3. from django.shortcuts import redirect
  4. def signup_redirect(request):
  5. messages.error(request, "Something wrong here, it may be that you already have account!")
  6. return redirect("homepage")