-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·65 lines (64 loc) · 1.93 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
include_once 'conf.php';
include_once 'base.php';
session_start ();
if (isset ( $_SESSION ['uid'] )) {
header ( 'Location: home.php' );
} else {
?>
<!DOCTYPE html>
<html>
<head>
<title>Sistem Informasi Akuntansi</title>
<link rel="stylesheet" href="<?php echo $template_uri?>styles.css">
<link rel="icon" type="image/png" href="<?php echo $template_uri?>images/favicon.png" />
</head>
<body>
<div align="center">
<?php
if(isset($_GET['msg'])){
echo "<div id=\"errmsg0\">".$_GET['msg']."</div>";
}
?>
<div id="login">
<strong>Silakan masuk ke dalam aplikasi</strong>
<form method="post" action="signin.php">
<p></p>
<div id="loginlabel">Pengguna</div>
<div id="loginform">
<img src="images/user.png" height="16px" width="16px"> <input type="text" name="username" autofocus="autofocus">
</div>
<p></p>
<p></p>
<div id="loginlabel">Katasandi</div>
<div id="loginform">
<img src="images/key.png" height="16px" width="16px"> <input type="password" name="password"><input type="hidden"
name="in" value="<?php echo rand(0, 1000000000); ?>">
</div>
<p></p>
<p></p>
<div id="loginlabel"> </div>
<div id="loginbutton">
<input type="submit" value="Masuk" id="loginsubmit"> <input type="reset" value="Batal" id="loginreset">
</div>
</form>
</div>
</div>
<?php
} ;
?>
<div id="footer"><div><strong><a href="http://udariza.wordpress.com/cfm">SIM - Small Industry Manager</a></strong>.
© 2014 <a href="mailto:[email protected]">Mohammad Riza
Nurtam</a>. Licensed under MIT License</div>
<p>
Disarankan menggunakan peramban dengan dukungan HTML5 seperti <a
href="http://firefox.com"><img src="images/firefox.png"
height="16px" width="16px"> Firefox</a>, <a
href="http://chrome.google.com"><img src="images/chrome.png"
height="16px" width="16px"> Chrome</a> atau <a
href="http://opera.com"><img src="images/opera.png" height="16px"
width="16px"> Opera</a>
</p>
</div>
</body>
</html>