32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
|
|
<meta http-equiv="keywords" content=""/>
|
|
<meta name="author" content="ZhangWeiJian"/>
|
|
<link rel="stylesheet" type="text/css" href="../static/css/login.css" />
|
|
<title>登陆</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<div class="container">
|
|
<div class="login">
|
|
<form action="/login/" method="post">
|
|
{% csrf_token %}
|
|
<input type="text" name="id" id="id" class="inputArea" placeholder="你的用户ID">
|
|
<input type="password" name="pw" id="pw" class="inputArea" placeholder="密码">
|
|
|
|
<input id="submit" class="loginBtn btn" type="submit" value="登陆" />
|
|
<a id="registBtn" class="registBtn btn" href="/registView" >注册</a>
|
|
<p class="fail">{{msgFail}}</p>
|
|
<p class="success">{{msgTrue}}</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" src="../static/scripts/jquery.js"></script>
|
|
<script type="text/javascript" src="../static/scripts/csrf.js"></script>
|
|
<!--script type="text/javascript" src="../static/scripts/login.js"></script-->
|
|
</body>
|
|
</html> |