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
|
<?php session_start(); if (($_SESSION['admin']=='Administrador_blandorinhas ')) { print("<script language='javascript'>window.location ='home.php'</script>"); } ?> <!DOCTYPE html> <!--[if IE 8]> <html lang="en" class="ie8"> <![endif]--> <!--[if IE 9]> <html lang="en" class="ie9"> <![endif]--> <!--[if !IE]><!--> <html lang="pt"> <!--<![endif]--> <!-- BEGIN HEAD --> <head> <meta charset="iso-8859-1" /> <title>Sivana - Painel Administrativo</title> <meta content="width=device-width, initial-scale=1.0" name="viewport" /> <meta content="" name="description" /> <meta content="" name="author" /> <link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" /> <link href="assets/css/metro.css" rel="stylesheet" /> <link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" /> <link href="assets/css/style.css" rel="stylesheet" /> <link href="assets/css/style_responsive.css" rel="stylesheet" /> <link href="assets/css/style_light.css" rel="stylesheet" id="style_color" /> <link rel="stylesheet" type="text/css" href="assets/uniform/css/uniform.default.css" /> <link rel="shortcut icon" href="favicon.ico" /> </head> <!-- END HEAD --> <!-- BEGIN BODY --> <body class="login"> <!-- BEGIN LOGO --> <div class="logo"><img src="images/sivana.png" width="262" height="142"></div> <!-- END LOGO --> <!-- BEGIN LOGIN --> <div class="content"> <!-- BEGIN LOGIN FORM --> <form id="form1" name="form1" method="post" action="login.php"> <h3 class="form-title">Entre com sua Conta</h3> <?php if (isset($_GET['login'])){ ?> <div class="alert alert-error "> <button class="close" data-dismiss="alert"></button> <span>Login ou senha incorretos!</span> </div> <?php } ?> <div class="control-group"> <!--ie8, ie9 does not support html5 placeholder, so we just show field title for that--> <label class="control-label visible-ie8 visible-ie9">login</label> <div class="controls"> <div class="input-icon left"> <i class="icon-user"></i> <input class="m-wrap placeholder-no-fix" type="text" name="login" id="login" placeholder="Login" /> </div> </div> </div> <div class="control-group"> <label class="control-label visible-ie8 visible-ie9">Senha</label> <div class="controls"> <div class="input-icon left"> <i class="icon-lock"></i> <input class="m-wrap placeholder-no-fix" type="password" placeholder="Password" name="senha"/> </div> </div> </div> <div class="form-actions"> <button type="submit" class="btn green pull-right"> Login <i class="m-icon-swapright m-icon-white"></i> </button> </div> </form> <!-- END LOGIN FORM --> </div> <!-- END LOGIN --> <!-- BEGIN COPYRIGHT --> <div class="copyright"> 2014 © Sivana | by <a target="_blank" href="http://gmcriacoes.com.br">GM Criações</a>. </div> <!-- END COPYRIGHT --> <!-- BEGIN JAVASCRIPTS --> <script src="assets/js/jquery-1.8.3.min.js"></script> <script src="assets/bootstrap/js/bootstrap.min.js"></script> <script src="assets/uniform/jquery.uniform.min.js"></script> <script src="assets/js/jquery.blockui.js"></script> <script src="assets/js/app.js"></script> <script> jQuery(document).ready(function() { App.initLogin(); }); </script> <!-- END JAVASCRIPTS --> </body> <!-- END BODY --> </html>
|