-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
28 lines (26 loc) · 990 Bytes
/
index.php
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
<?php
ob_start();
require_once('includes/load.php');
if($session->isUserLoggedIn(true)) { redirect('home.php', false);}
?>
<?php include_once('layouts/header.php'); ?>
<div class="login-page">
<div>
<img src="libs/img/P&G.png" width="200px" alt="" style="margin: 50px;">
<?php echo display_msg($msg); ?>
<form method="post" action="auth.php" class="clearfix">
<div class="form-group">
<label for="username" class="control-label">Usuario</label>
<input type="name" class="form-control" name="username" placeholder="Usuario">
</div>
<div class="form-group">
<label for="Password" class="control-label">Contraseña</label>
<input type="password" name= "password" class="form-control" placeholder="Contraseña">
</div>
<div class="form-group">
<button type="submit" class="btn btn-info pull-right">Ingresar</button>
</div>
</form>
</div>
</div>
<?php include_once('layouts/footer.php'); ?>