fuchengshen
2022-07-15 e1186e0c9c1a7a47454b73f9cddcf733dce30b32
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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <link rel="stylesheet" type="text/css" href="./css/login.css"/>
        <script src="lib/jquery/jquery-1.11.3.min.js" type="text/javascript" charset="utf-8"></script>
        <script src="./js/jquery_cookie.js" type="text/javascript" charset="utf-8"></script>
        <title></title>
        <style type="text/css">
            .block{
                display: block;
            }
            .none{
                display: none;
            }
        </style>
    </head>
    <body>
        <div class="user"> 
            <div class="login_box block">
                <h1>登录</h1>
                <form>
                    <label>
                        <span class="label_text">用户名:</span>
                        <input class="login_username" type="text" placeholder="username" />
                    </label>
                    <label>
                        <span class="label_text">密码:</span>
                        <input class="login_pwd" type="password" placeholder="passwor" />
                    </label>
                    <button class="submit_login">登录</button>
                    <a href="###" id="to_regist">没有账号,马上注册</a>
                </form>
            </div>
            <div class="regist_box none">
                <h1>注册</h1>
                <form>
                    <label>
                        <span class="label_text">用户名:</span>
                        <input class="regist_username" type="text" placeholder="username" />
                    </label>
                    <label>
                        <span class="label_text">密码:</span>
                        <input class="regist_password" type="password" placeholder="passwor" />
                    </label>
                    <label>
                        <span class="label_text">确认密码:</span>
                        <input class="regist_repwd" type="password" placeholder="passwor" />
                    </label>
                    <label>
                        <span class="label_text">手机号:</span>
                        <input class="regist_repwd" type="password" placeholder="passwor" />
                    </label>
                    <button class="submit_regist">注册</button>
                    <a href="###" id="to_login">已有账号?马上去登陆</a>
                </form>
            </div>
        </div>
    </body>
    <script src="js/user.js" type="text/javascript" charset="utf-8"></script>
</html>