-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
40 lines (33 loc) · 1.2 KB
/
Copy pathindex.php
File metadata and controls
40 lines (33 loc) · 1.2 KB
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
<?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-container-msg">
<p class="msg">
<?php echo display_msg($msg); ?>
</p>
</div>
<div class="login-container wrapper">
<div class="wrapper login-image-container">
<img class="lpage-banner" src="libs/res/favicon.png" alt="default_logo">
<h1 class="login-heading">Inventory System</h1>
</div>
<div class="login-field-container">
<form method="post" action="auth.php">
<div class="inputGrup ">
<label for="username" class="control-label">Username</label>
<input type="name" class=" login" name="username" placeholder="admin">
</div>
<div class="inputGrup ">
<label for="Password" class="control-label">Password</label>
<input type="password" name= "password" class=" login" placeholder="0000">
</div>
<div class="inputGrup ">
<button type="submit" class="loginBtn" style="">Login</button>
</div>
</form>
</div>
</div>
<?php include_once('layouts/footer.php'); ?>