D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
chatweb02
/
application
/
views
/
login
/
Filename :
login.php
back
Copy
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content="Anderson Felix, Devcodes.com.br"> <meta name="generator" content="Devcodes 1.4"> <title><?php echo $_ENV['ABA_TITULO']; ?></title> <!-- Bootstrap core CSS --> <link href="<?php echo $this->config->base_url(); ?>assets/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <style> .bd-placeholder-img { font-size: 1.125rem; text-anchor: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } @media (min-width: 768px) { .bd-placeholder-img-lg { font-size: 3.5rem; } } #login { margin-bottom: 15px; } </style> <!-- Custom styles for this template --> <link href="<?php echo $this->config->base_url(); ?>assets/style-chat/css/signin.css" rel="stylesheet"> </head> <body class="text-center"> <form class="form-signin" method="post" action="<?php echo $this->config->base_url(); ?>usuarios/validar"> <img class="mb-4" src="<?php echo $_ENV['LGO_LOGO']; ?>" alt="" width="<?php echo $_ENV['LGO_LARGURA']; ?>" height="<?php echo $_ENV['LGO_ALTURA']; ?>"> <!-- <h1 class="h3 mb-3 font-weight-normal">Please sign in</h1> --> <label for="inputEmail" class="sr-only">Usuário</label> <input type="text" id="login" name="login" class="form-control" placeholder="Usuario" required autofocus> <label for="inputPassword" class="sr-only">Senha</label> <input type="password" id="senha" name="senha" class="form-control" placeholder="Senha" required> <?php if(!empty($err)){ ?> <div class="alert alert-danger" role="alert"> <?php echo $err; ?> </div> <?php } ?> <div class="checkbox mb-3"> <!-- <label> <input type="checkbox" value="remember-me"> Remember me </label> --> </div> <button class="btn btn-lg btn-primary btn-block" type="submit">Entrar</button> <p class="mt-5 mb-3 text-muted">©2020</p> </form> </body> </html>