【调度系统】广东民航医疗快线调度系统源代码
wanglizhong
2025-04-28 1e955583470b47f7636eaba800c52c258ac24296
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Smooth Admin</title>
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
        <!-- stylesheets -->
        <link rel="stylesheet" type="text/css" href="resources/css/reset.css" />
        <link rel="stylesheet" type="text/css" href="resources/css/style.css" media="screen" />
        <link id="color" rel="stylesheet" type="text/css" href="resources/css/colors/blue.css" />
        <!-- scripts (jquery) -->
        <script src="resources/scripts/jquery-1.4.2.min.js" type="text/javascript"></script>
        <script src="resources/scripts/jquery-ui-1.8.custom.min.js" type="text/javascript"></script>
        <script src="resources/scripts/smooth.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(document).ready(function () {
                style_path = "resources/css/colors";
 
                $("input.focus").focus(function () {
                    if (this.value == this.defaultValue) {
                        this.value = "";
                    }
                    else {
                        this.select();
                    }
                });
 
                $("input.focus").blur(function () {
                    if ($.trim(this.value) == "") {
                        this.value = (this.defaultValue ? this.defaultValue : "");
                    }
                });
 
                $("input:submit, input:reset").button();
            });
        </script>
    </head>
    <body>
        <div id="login">
            <!-- login -->
            <div class="title">
                <h5>Sign In to Smooth Admin</h5>
                <div class="corner tl"></div>
                <div class="corner tr"></div>
            </div>
            <div class="messages">
                <div id="message-error" class="message message-error">
                    <div class="image">
                        <img src="resources/images/icons/error.png" alt="Error" height="32" />
                    </div>
                    <div class="text">
                        <h6>Error Message</h6>
                        <span>This is the error message.</span>
                    </div>
                    <div class="dismiss">
                        <a href="#message-error"></a>
                    </div>
                </div>
            </div>
            <div class="inner">
                <form action="index.html" method="get">
                <div class="form">
                    <!-- fields -->
                    <div class="fields">
                        <div class="field">
                            <div class="label">
                                <label for="username">Username:</label>
                            </div>
                            <div class="input">
                                <input type="text" id="username" name="username" size="40" value="admin" class="focus" />
                            </div>
                        </div>
                        <div class="field">
                            <div class="label">
                                <label for="password">Password:</label>
                            </div>
                            <div class="input">
                                <input type="password" id="password" name="password" size="40" value="password" class="focus" />
                            </div>
                        </div>
                        <div class="field">
                            <div class="checkbox">
                                <input type="checkbox" id="remember" name="remember" />
                                <label for="remember">Remember me</label>
                            </div>
                        </div>
                        <div class="buttons">
                            <input type="submit" value="Sign In" />
                        </div>
                    </div>
                    <!-- end fields -->
                    <!-- links -->
                    <div class="links">
                        <a href="index.html">Forgot your password?</a>
                    </div>
                    <!-- end links -->
                </div>
                </form>
            </div>
            <!-- end login -->
            <div id="colors-switcher" class="color">
                <a href="" class="blue" title="Blue"></a>
                <a href="" class="green" title="Green"></a>
                <a href="" class="brown" title="Brown"></a>
                <a href="" class="purple" title="Purple"></a>
                <a href="" class="red" title="Red"></a>
                <a href="" class="greyblue" title="GreyBlue"></a>
            </div>
        </div>
    </body>
</html>