符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
今天小编就为大家带来一篇有关django实现用户登陆验证的文章。小编觉得挺实用的,为此分享给大家做个参考。一起跟随小编过来看看吧。
为喀喇沁等地区用户提供了全套网页设计制作服务,及喀喇沁网站建设行业解决方案。主营业务为做网站、成都做网站、喀喇沁网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!一.django简单用户登陆验证 前端页面:
后端验证 from django.shortcuts import render,HttpResponseRedirect from django.contrib.auth import authenticate,login,logout from django.contrib.auth.decorators import login_required def acc_login(request): if request.method == 'POST': print request.method username = request.POST.get('username') passwd = request.POST.get('password') user = authenticate(username=username,password=passwd) print 'username:%s \n passwd:%s \n user:%s' %(username,passwd,user) if user is not None:#pass authtencation login(request,user) return HttpResponseRedirect('/') else: return render(request,'login.html',{ 'login_err':"Wrong username or password!" }) else: return render(request,'login.html')from django.contrib.auth import authenticateuser = authenticate(username='john', password='secret')if user is not None: # the password verified for the user if user.is_active: print("User is valid, active and authenticated") else: print("The password is valid, but the account has been disabled!")else: # the authentication system was unable to verify the username and password print("The username and password were incorrect.") 来源:http://python.usyiyi.cn/django/intro/tutorial02.html首页中登录/退出按钮
{% if request.user.is_authenticated %}{% else %} {% endif %}{% if request.user.is_authenticated %} {% else %}
- Login
{% endif %}看完上述内容,你们掌握django实现用户登陆验证的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注创新互联行业资讯频道,感谢各位的阅读!
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
网页名称:django实现用户登陆验证源码-创新互联
浏览地址:http://bjjierui.cn/article/cojjgd.html