密码错误,并从程序django收到警报

时间:2014-11-19 14:23:21

标签: javascript python django

请im新到django,我想在我的项目中添加源代码,当用户尝试连接时,如果密码等于" test"我希望模板再次向用户显示一个警告javascript,表明密码不正确 这是我的代码: views.py

#Authentification
def home(request):
    if request.method=='POST':
        admin1=AdministrateurForm(request.POST)
        if admin1.is_valid():
            nom=admin1.cleaned_data['login']
            pwd=admin1.cleaned_data['passe']
            for admin1 in Administrateur.objects.all():
                if admin1.login==nom and admin1.passe==pwd:
                    return redirect(menuPrincipal)
                else:
                    return redirect(home)
    else:
        admin1=AdministrateurForm()

    return render(request,'GPI/index.html',locals())

模板: 的index.html:

上面的代码我把这个:

<body  id="page-top" class="index">
{% if pwd == "test" %}
<script type="text/javascript">alert("Mot de passe ou login incorrect !")</script>
{% else %}
{% endif %}

0 个答案:

没有答案