-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
71 lines (67 loc) · 1.75 KB
/
login.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
<link rel="stylesheet" href="/static/css/regist.css" type="text/css">
{% block style %}
{% endblock %}
</head>
<body>
<div id="container">
<!--1. 顶部标题-->
<h2>
{% block h2 %}
会员登录
{% endblock %}
</h2>
<!--2. 主体内容-->
<div id="main">
<!--2.1 左列-->
<div class="left">
<img src="/static/images/huiyuan.jpg">
{% block anchor %}
<a href="/register">会员注册</a>
{% endblock %}
</div>
<!--2.2 右列-->
<div class="right">
{% block form %}
<form action="" method="" enctype="">
<!--表单中的行-->
<div class="form-line">
<p>手机号</p>
<input type="text" name="uphone" placeholder="" maxlength="" class="uinput">
</div>
<div class="form-line">
<p>密码</p>
<input type="password" name="upwd" placeholder="请输入6-20位字符" class="uinput">
</div>
<div class="form-line">
<p></p>
<div>
<input type="checkbox" name="isSave" value="isSave" id="isSave">记住密码
<p>
<a href="">忘记密码</a>
<a href="">快捷登录</a>
</p>
</div>
</div>
<div class="form-line">
<p></p>
<div>
<input type="submit" value="登录" class="btn">
<a href="/register" class="btn registBtn">会员注册</a>
</div>
</div>
</form>
{% endblock %}
</div>
</div>
</div>
</body>
</html>