我是django的首发。
我正在创建一个登录页面,如果数据库(mongoDB)中存在用户名/密码。它将它带到另一页。
我的模板如下:
<html>
<head>
<title>Login page</title>
</head>
<body>
<h1>Simple Login Page</h1>
<form name="login">
Username<input type="text" name="userid"/>
Password<input type="password" name="pswrd"/>
<input type="button" onclick="check(this.form)" value="Login"/>
<input type="reset" value="Cancel"/>
</form>
<ul>
{% for item in Employee %}
{% if item.name == form.userid.value && item.password == form.paswd.value %} ***"""""one more check for item.field ::: if(field =="a") then take to page:1.html else take to page2.html"""*** {% else %} **Wrong password pop up**{% endif %}
<li>{{ item.name }}</li>
{% endfor %}
</ul>
}
</script>
</body>
如何在Django,mongodb,python
中完成