source: pro-violet-viettel/docs/template/login.html @ 400

Last change on this file since 400 was 400, checked in by dungnv, 11 years ago
  • Property svn:mime-type set to text/plain
File size: 3.9 KB
RevLine 
[400]1<!DOCTYPE html>
2<html lang="en">
3        <head>
4                <meta charset="utf-8" />
5                <title>Đăng nhập |SBG</title>
6
7                <meta name="description" content="User login page" />
8                <meta name="viewport" content="width=device-width, initial-scale=1.0" />
9
10                <!-- basic styles -->
11
12                <link href="assets/css/bootstrap.min.css" rel="stylesheet" />
13                <link rel="stylesheet" href="assets/css/font-awesome.min.css" />
14
15                <link rel="stylesheet" href="assets/css/ace-fonts.css" />
16
17                <!-- ace styles -->
18
19                <link rel="stylesheet" href="assets/css/ace.min.css" />
20                <link rel="stylesheet" href="assets/css/ace-rtl.min.css" />
21
22                <!--[if lte IE 8]>
23                  <link rel="stylesheet" href="assets/css/ace-ie.min.css" />
24                <![endif]-->
25
26                <!-- inline styles related to this page -->
27
28                <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
29
30                <!--[if lt IE 9]>
31                <script src="assets/js/html5shiv.js"></script>
32                <script src="assets/js/respond.min.js"></script>
33                <![endif]-->
34        </head>
35
36        <body class="login-layout">
37                <div class="main-container">
38                        <div class="main-content">
39                                <div class="row">
40                                        <div class="col-sm-10 col-sm-offset-1">
41                                                <div class="login-container">
42
43                                                        <div class="space-6"></div>
44
45                                                        <div class="position-relative">
46                                                                <div id="login-box" class="login-box visible widget-box no-border">
47                                                                        <div class="widget-body">
48                                                                                <div class="widget-main">
49                                                                                        <h4 class="header blue lighter bigger">
50                                                                                                <i class="icon-cloud-upload green"></i>
51                                                                                                VIOLET SPACE |<small>Đăng nhập</small>
52                                                                                        </h4>
53
54                                                                                        <form>
55                                                                                                <fieldset>
56                                                                                                        <label class="block clearfix">
57                                                                                                                <span class="block input-icon input-icon-right">
58                                                                                                                        <input type="text" class="form-control" placeholder="Tài khoản" />
59                                                                                                                        <i class="icon-user"></i>
60                                                                                                                </span>
61                                                                                                                <div class="help-block"> </div>
62                                                                                                        </label>
63
64                                                                                                        <label class="block clearfix">
65                                                                                                                <span class="block input-icon input-icon-right">
66                                                                                                                        <input type="password" class="form-control" placeholder="Mật khẩu" />
67                                                                                                                        <i class="icon-lock"></i>
68                                                                                                                </span>
69                                                                                                                <div class="help-block"> </div>
70                                                                                                        </label>
71
72                                                                                                        <div class="space"></div>
73
74                                                                                                        <div class="clearfix">
75                                                                                                                <label class="inline">
76                                                                                                                        <input type="checkbox" class="ace" />
77                                                                                                                        <span class="lbl"> Ghi nhớ</span>
78                                                                                                                </label>
79
80                                                                                                                <a href="index.html" title="">
81                                                                                                                        <button type="button" class="pull-right btn btn-sm btn-primary">
82                                                                                                                                <i class="icon-key"></i>
83                                                                                                                                Đăng nhập
84                                                                                                                        </button>
85                                                                                                                </a>
86                                                                                                        </div>
87
88                                                                                                        <div class="space-4"></div>
89                                                                                                </fieldset>
90                                                                                        </form>
91                                                                                </div><!-- /widget-main -->
92                                                                        </div><!-- /widget-body -->
93                                                                </div><!-- /login-box -->
94
95                                                        </div><!-- /position-relative -->
96                                                </div>
97                                        </div><!-- /.col -->
98                                </div><!-- /.row -->
99                        </div>
100                </div><!-- /.main-container -->
101
102                <!-- basic scripts -->
103
104                <!--[if !IE]> -->
105
106                <script type="text/javascript">
107                        window.jQuery || document.write("<script src='assets/js/jquery-2.0.3.min.js'>"+"<"+"/script>");
108                </script>
109
110                <!-- <![endif]-->
111
112                <!--[if IE]>
113<script type="text/javascript">
114 window.jQuery || document.write("<script src='assets/js/jquery-1.10.2.min.js'>"+"<"+"/script>");
115</script>
116<![endif]-->
117
118                <script type="text/javascript">
119                        if("ontouchend" in document) document.write("<script src='assets/js/jquery.mobile.custom.min.js'>"+"<"+"/script>");
120                </script>
121
122                <!-- inline scripts related to this page -->
123
124                <script type="text/javascript">
125                        function show_box(id) {
126                         jQuery('.widget-box.visible').removeClass('visible');
127                         jQuery('#'+id).addClass('visible');
128                        }
129                </script>
130        </body>
131</html>
Note: See TracBrowser for help on using the repository browser.