[325] | 1 | <?php $base_url = base_url();?> |
---|
[294] | 2 | <!DOCTYPE html> |
---|
| 3 | <html lang="en"> |
---|
| 4 | <head> |
---|
| 5 | <meta charset="utf-8" /> |
---|
[322] | 6 | <title>SBG Online</title> |
---|
[294] | 7 | |
---|
| 8 | <meta name="description" content="User login page" /> |
---|
| 9 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
---|
| 10 | |
---|
| 11 | <!-- basic styles --> |
---|
[325] | 12 | <link href="<?php echo $base_url; ?>assets/css/bootstrap.min.css" rel="stylesheet" /> |
---|
| 13 | <link rel="stylesheet" href="<?php echo $base_url; ?>assets/css/font-awesome.min.css" /> |
---|
[294] | 14 | |
---|
[325] | 15 | <link rel="stylesheet" href="<?php echo $base_url; ?>assets/css/ace-fonts.css" /> |
---|
[294] | 16 | |
---|
| 17 | <!-- ace styles --> |
---|
| 18 | |
---|
[325] | 19 | <link rel="stylesheet" href="<?php echo $base_url; ?>assets/css/ace.min.css" /> |
---|
| 20 | <link rel="stylesheet" href="<?php echo $base_url; ?>assets/css/ace-rtl.min.css" /> |
---|
[558] | 21 | <link rel="stylesheet" href="<?php echo $base_url; ?>assets/css/custom.css" /> |
---|
[294] | 22 | |
---|
| 23 | <!--[if lte IE 8]> |
---|
| 24 | <link rel="stylesheet" href="assets/css/ace-ie.min.css" /> |
---|
| 25 | <![endif]--> |
---|
| 26 | |
---|
| 27 | <!-- inline styles related to this page --> |
---|
| 28 | |
---|
| 29 | <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> |
---|
| 30 | |
---|
| 31 | <!--[if lt IE 9]> |
---|
| 32 | <script src="assets/js/html5shiv.js"></script> |
---|
| 33 | <script src="assets/js/respond.min.js"></script> |
---|
| 34 | <![endif]--> |
---|
| 35 | </head> |
---|
| 36 | |
---|
| 37 | <body class="login-layout"> |
---|
[322] | 38 | <div class="main-container no-margin"> |
---|
[294] | 39 | <div class="main-content"> |
---|
| 40 | <div class="row"> |
---|
| 41 | <div class="space-6"></div> |
---|
[558] | 42 | <div class="col-md-8 site-info"> |
---|
[322] | 43 | <div class="title-box col-md-8"> |
---|
[325] | 44 | <img src="<?php echo $base_url; ?>assets/img/logo_soanbai_online_black.png" class="img-responsive"> |
---|
[558] | 45 | <div class="row"> |
---|
| 46 | <img src="<?php echo $base_url; ?>assets/img/logo_Violet.png" class="img-responsive col-md-3"> |
---|
| 47 | <img src="<?php echo $base_url; ?>assets/img/logo_viettel.png" class="img-responsive col-md-3" style="margin-top:20px"> |
---|
| 48 | </div> |
---|
[294] | 49 | </div> |
---|
| 50 | </div> |
---|
[558] | 51 | |
---|
[322] | 52 | <div class="col-md-4"> |
---|
[294] | 53 | <div class="login-container"> |
---|
| 54 | <div class="position-relative"> |
---|
| 55 | <div id="login-box" class="login-box visible widget-box no-border" style="background: transparent"> |
---|
| 56 | <div class="widget-body" style="background:transparent"> |
---|
| 57 | <div class="widget-main" style="background:transparent"> |
---|
| 58 | <h4 class="header blue lighter bigger"> |
---|
| 59 | <i class="icon-cloud-upload green"></i> |
---|
[329] | 60 | SBGOnline | <small><a href="#" data-toggle="modal" data-target="#modal-signup">ÄÄng kÜ</a></small> |
---|
[294] | 61 | </h4> |
---|
[325] | 62 | <form action="<?php echo $base_url; ?>frontend/home/signin" id="validation-form" method="POST"> |
---|
[294] | 63 | <fieldset> |
---|
| 64 | <label class="block clearfix has-error"> |
---|
[325] | 65 | <div class="help-block"> |
---|
| 66 | <?php |
---|
| 67 | if($this->session->flashdata('login_error')){ |
---|
| 68 | echo 'ThÃŽng tin ÄÄng nháºp khÃŽng chÃnh xác!'; |
---|
| 69 | } |
---|
| 70 | ?> |
---|
| 71 | </div> |
---|
| 72 | </label> |
---|
| 73 | <label class="block clearfix has-error"> |
---|
[294] | 74 | <span class="block input-icon input-icon-right"> |
---|
[502] | 75 | <input type="text" class="form-control" name="username" placeholder="Sá» Äiá»n thoại" /> |
---|
[294] | 76 | <i class="icon-user"></i> |
---|
| 77 | </span> |
---|
[322] | 78 | <div class="help-block"></div> |
---|
[294] | 79 | </label> |
---|
| 80 | |
---|
| 81 | <label class="block clearfix"> |
---|
| 82 | <span class="block input-icon input-icon-right"> |
---|
| 83 | <input type="password" class="form-control" name="password" placeholder="Máºt khẩu" /> |
---|
| 84 | <i class="icon-lock"></i> |
---|
[322] | 85 | </span> |
---|
| 86 | <div class="help-block"> </div> |
---|
[294] | 87 | </label> |
---|
[489] | 88 | <h4> |
---|
| 89 | <small><a href="#" data-toggle="modal" data-target="#modal-forgotpass">Quên máºt khẩu</a></small> |
---|
| 90 | </h4> |
---|
[322] | 91 | <div class="space"></div> |
---|
[489] | 92 | |
---|
[294] | 93 | <div class="clearfix"> |
---|
| 94 | <label class="inline"> |
---|
[325] | 95 | <input type="checkbox" name="remember_me" class="ace" /> |
---|
[294] | 96 | <span class="lbl"> Ghi nhá»</span> |
---|
| 97 | </label> |
---|
| 98 | |
---|
[325] | 99 | <!--a href="index-user.html" title=""--> |
---|
[310] | 100 | <button type="submit" name="submit" id="login-button" class="pull-right btn btn-sm btn-primary"> |
---|
[294] | 101 | <i class="icon-key"></i> |
---|
| 102 | ÄÄng nháºp |
---|
| 103 | </button> |
---|
[325] | 104 | <!--/a--> |
---|
[294] | 105 | </div> |
---|
| 106 | |
---|
| 107 | <div class="space-4"></div> |
---|
| 108 | </fieldset> |
---|
| 109 | </form> |
---|
| 110 | </div><!-- /widget-main --> |
---|
| 111 | </div><!-- /widget-body --> |
---|
| 112 | </div><!-- /login-box --> |
---|
| 113 | |
---|
| 114 | </div><!-- /position-relative --> |
---|
| 115 | </div> |
---|
| 116 | </div><!-- /.col --> |
---|
| 117 | </div><!-- /.row --> |
---|
| 118 | |
---|
| 119 | </div> |
---|
| 120 | </div><!-- /.main-container --> |
---|
| 121 | |
---|
[322] | 122 | <div class="modal fade" id="modal-signup" tabindex="-1" role="dialog"aria-hidden="true"> |
---|
[294] | 123 | <div class="modal-dialog"> |
---|
| 124 | <div class="modal-content"> |
---|
| 125 | <div class="modal-header"> |
---|
| 126 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> |
---|
[322] | 127 | <h4 class="modal-title">ÄÄng kÜ tà i khoản</h4> |
---|
[294] | 128 | </div> |
---|
| 129 | <div class="modal-body"> |
---|
[502] | 130 | <div class="alert alert-block alert-success" style="text-align: justify;"> |
---|
| 131 | |
---|
| 132 | <p> |
---|
| 133 | Äá» ÄÄng kÜ tà i khoản tà i khoản trên há» thá»ng Soạn Bà i giảng trá»±c tuyến (SBG Online), Quà vá» hãy soạn tin nhắn theo cú pháp: |
---|
| 134 | <strong> |
---|
| 135 | SBG DK |
---|
| 136 | </strong> |
---|
| 137 | gá»i tá»i |
---|
| 138 | <strong> |
---|
[541] | 139 | 8062</strong> (500Ä/tin). |
---|
[502] | 140 | </p> |
---|
| 141 | <p> |
---|
| 142 | Sau khi nháºn ÄÆ°á»£c tin nhắn ÄÄng kà tà i khoản cá»§a Quà vá», há» thá»ng SBG Online sẜ gá»i lại thÃŽng tin ÄÄng nháºp và o Äiá»n thoại cá»§a Quà vá». |
---|
| 143 | </p> |
---|
| 144 | <p> |
---|
| 145 | Nếu Äã nháºn ÄÆ°á»£c thÃŽng tin ÄÄng nháºp há» thá»ng SBG Online gá»i tá»i Äiá»n thoại cá»§a mình, Quà vá» hãy Äiá»n thÃŽng tin và nhấn và o <strong>ÄÄng nháºp</strong> Äá» ÄÄng nháºp và o há» thá»ng. |
---|
| 146 | </p> |
---|
| 147 | <p> |
---|
| 148 | Nếu có vưá»ng mắc gì vá» viá»c ÄÄng kÃ, Quà vá» hãy gá»i sá» <strong>01662860000</strong> Äá» ÄÆ°á»£c há» trợ. |
---|
| 149 | </p> |
---|
| 150 | </div> |
---|
[294] | 151 | </div> |
---|
| 152 | </div> |
---|
| 153 | </div> |
---|
| 154 | </div> |
---|
[489] | 155 | |
---|
| 156 | <div class="modal fade" id="modal-forgotpass" tabindex="-1" role="dialog"aria-hidden="true"> |
---|
| 157 | <div class="modal-dialog"> |
---|
| 158 | <div class="modal-content"> |
---|
| 159 | <div class="modal-header"> |
---|
| 160 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> |
---|
| 161 | <h4 class="modal-title">Quên máºt khẩu</h4> |
---|
| 162 | </div> |
---|
| 163 | <div class="modal-body"> |
---|
| 164 | <div class="alert alert-block alert-success"> |
---|
| 165 | <p> |
---|
[541] | 166 | Äá» lấy lại máºt khẩu cá»§a mình trên há» thá»ng SBG Online, Quà vá» hãy dùng <strong>sá» Äiá»n thoại Äã ÄÄng kà tà i khoản</strong> và soạn tin theo cú pháp: <strong>SBG MK</strong> gá»i tá»i <strong>8062 </strong>(500Ä/tin). |
---|
[489] | 167 | </p> |
---|
| 168 | </div> |
---|
| 169 | </div> |
---|
| 170 | </div> |
---|
| 171 | </div> |
---|
| 172 | </div> |
---|
[294] | 173 | <!-- basic scripts --> |
---|
| 174 | |
---|
| 175 | <!--[if !IE]> --> |
---|
| 176 | |
---|
| 177 | <script type="text/javascript"> |
---|
[325] | 178 | window.jQuery || document.write("<script src='<?php echo $base_url; ?>assets/js/jquery-2.0.3.min.js'>"+"<"+"/script>"); |
---|
[294] | 179 | </script> |
---|
[325] | 180 | <script src="<?php echo $base_url; ?>assets/js/bootstrap.min.js"></script> |
---|
| 181 | <script src="<?php echo $base_url; ?>assets/js/jquery.validate.min.js"></script> |
---|
[294] | 182 | |
---|
[325] | 183 | <script src="<?php echo $base_url; ?>assets/js/ace-elements.min.js"></script> |
---|
| 184 | <script src="<?php echo $base_url; ?>assets/js/ace.min.js"></script> |
---|
[294] | 185 | <!-- <![endif]--> |
---|
| 186 | |
---|
| 187 | <!--[if IE]> |
---|
| 188 | <script type="text/javascript"> |
---|
| 189 | window.jQuery || document.write("<script src='assets/js/jquery-1.10.2.min.js'>"+"<"+"/script>"); |
---|
| 190 | </script> |
---|
| 191 | <![endif]--> |
---|
| 192 | |
---|
| 193 | <script type="text/javascript"> |
---|
[325] | 194 | if("ontouchend" in document) document.write("<script src='<?php echo $base_url; ?>assets/js/jquery.mobile.custom.min.js'>"+"<"+"/script>"); |
---|
[294] | 195 | </script> |
---|
| 196 | |
---|
| 197 | <!-- inline scripts related to this page --> |
---|
| 198 | |
---|
| 199 | <script type="text/javascript"> |
---|
| 200 | function show_box(id) { |
---|
| 201 | jQuery('.widget-box.visible').removeClass('visible'); |
---|
| 202 | jQuery('#'+id).addClass('visible'); |
---|
| 203 | } |
---|
| 204 | |
---|
| 205 | $('#register-button').click(function(){ |
---|
| 206 | $('#modal-login').modal('show') |
---|
| 207 | }) |
---|
| 208 | |
---|
| 209 | $('#validation-form').validate({ |
---|
| 210 | errorElement: 'label', |
---|
| 211 | errorClass: 'help-block', |
---|
| 212 | focusInvalid: true, |
---|
| 213 | rules: { |
---|
| 214 | password: { |
---|
| 215 | required: true, |
---|
| 216 | }, |
---|
[447] | 217 | username: { |
---|
[294] | 218 | required: true |
---|
| 219 | } |
---|
| 220 | }, |
---|
| 221 | |
---|
| 222 | messages: { |
---|
[447] | 223 | username: { |
---|
[322] | 224 | required: "Vui lòng nháºp tà i khoản hoặc sá» Äiá»n thoại", |
---|
[294] | 225 | }, |
---|
| 226 | password: { |
---|
[322] | 227 | required: "Vui lòng nháºp máºt khẩu.", |
---|
[294] | 228 | } |
---|
| 229 | }, |
---|
| 230 | |
---|
| 231 | highlight: function (e) { |
---|
| 232 | $(e).closest('label').removeClass('has-info').addClass('has-error'); |
---|
| 233 | }, |
---|
| 234 | |
---|
| 235 | success: function (e) { |
---|
| 236 | $(e).closest('label').removeClass('has-error').addClass('has-info'); |
---|
| 237 | $(e).remove(); |
---|
| 238 | }, |
---|
| 239 | }); |
---|
| 240 | </script> |
---|
| 241 | </body> |
---|
| 242 | </html> |
---|