forked from xsuperbug/g0yg0y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
50 lines (39 loc) · 1.05 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
include 'ust.php';
if(!empty($_SESSION['kim'])) {
$ok="<div class='alert alert-success' role='alert'>".$_SESSION['whoami']." has logged</div>";
}
?>
<?php echo (!empty($ok) ? $ok : ""); ?>
<!-- 1 -->
<div id="page-content-wrapper">
<!-- 2 -->
<div class="container-fluid">
<!-- 3 -->
<div class="row">
<!-- 4 -->
<div class="col-lg-6">
<h1>Login Panel</h1><br>
<div class="well">
<h4>Please Login:</h5>
<hr>
<form action="conf.php" method="POST">
<div class="form-group">
<label for="exampleInputEmail1">Username :</label>
<input name="username" class="form-control" id="exampleInputEmail1" placeholder="">
</div>
<div class="form-group">
<label for="exampleInputEmail1">Password :</label>
<input name="password" class="form-control" id="exampleInputEmail1" placeholder="">
</div>
<button type="submit" name="submit" class="btn btn-default">Submit</button>
</form>
</div>
<br>
<!-- /4 -->
</div>
<!-- /3 -->
</div>
<!-- /2 -->
</div>
<?php include 'alt.php'; ?>