-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
49 lines (40 loc) · 1.34 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
<!DOCTYPE html>
<html lang="id">
<head>
<title>Aplikasi Sistem Informasi Klinik | Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link href="css/style.css" rel="stylesheet" media="screen">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/bootstrap-responsive.min.css" rel ="stylesheet">
<link rel="shoutcut icon" href="img/kop.png">
</head>
<body>
<div class="line"></div>
<section>
<div class="container">
<div class="row">
<div class="span4 offset4 content">
<h5><i class="icon-lock icon-white"></i> Aplikasi Sistem Informasi Klinik</h5>
<form method="post" action="cek_log.php">
<fieldset>
<label>Username</label>
<input type="text" class="span4" name="username" autocomplete="off">
<label>Password</label>
<input type="password" class="span4" name="password">
<div class="clear"></div>
<hr>
<div class="clear"></div>
<button type="submit" class="btn btn-info"> Login</button>
</fieldset>
</form>
<!-- Modal -->
<!-- End Modal -->
</div>
</div>
</div>
</section>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script><!-- Bootstrap -->
</body>
</html>