mirror of
https://github.com/hequan2017/seal.git
synced 2026-05-12 03:26:44 +08:00
58 lines
1.6 KiB
HTML
58 lines
1.6 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>海豹 | 登录</title>
|
|
<link href=" {% static "css/bootstrap.min.css" %}" rel="stylesheet">
|
|
<link href="{% static "font-awesome/css/font-awesome.css" %}" rel="stylesheet">
|
|
|
|
<link href="{% static "css/animate.css" %}" rel="stylesheet">
|
|
<link href="{% static "css/style.css" %} " rel="stylesheet">
|
|
|
|
|
|
</head>
|
|
|
|
<body class="gray-bg">
|
|
|
|
<div class="middle-box text-center loginscreen animated fadeInDown">
|
|
<div>
|
|
<div>
|
|
</div>
|
|
<h3>欢迎登录 海豹 系统</h3>
|
|
<form class="m-t" role="form" action="{% url "system:login" %}" method="POST">
|
|
{% csrf_token %}
|
|
<div class="form-group">
|
|
<input type="text" name="username" class="form-control" placeholder="用户名" required="">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="password" name="password" class="form-control" placeholder="密码" required="">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary block full-width m-b">登录</button>
|
|
|
|
<a href="#">
|
|
<span style="color: red;"> {{ error_msg }}</span><br>
|
|
不推荐使用IE/360浏览器(兼容模式)浏览!<br />
|
|
|
|
</a>
|
|
<div id="login_container"></div>
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="{% static "js/jquery-3.1.1.min.js" %}"></script>
|
|
<script src="{% static "js/bootstrap.min.js" %}"></script>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|