-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
48 lines (47 loc) · 2.04 KB
/
index.php
File metadata and controls
48 lines (47 loc) · 2.04 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
41
42
43
44
45
46
47
48
<?php
include 'app/usersClass.php';
session_start();
if(isset($_POST['btn'])){
$data = $_POST['frm'];
$object = new users();
$object->login($data);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="keyword" content="FlatLab, Dashboard, Bootstrap, Admin, Template, Theme, Responsive, Fluid, Retina">
<link rel="shortcut icon" href="img/favicon.html">
<title>ورود | دفترچه تلفن آنلاین</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-reset.css" rel="stylesheet">
<link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet">
<link href="css/style-responsive.css" rel="stylesheet" />
<!-- HTML5 shim and Respond.js IE8 support of HTML5 tooltipss and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body class="login-body">
<div class="container">
<img src="img/logo.png" width="150" height="150" alt="" class="academyitLogo"/>
<form class="form-signin" action="" method="post">
<h2 class="form-signin-heading">همین حالا وارد شوید</h2>
<div class="login-wrap">
<input type="text" class="form-control" placeholder="نام کاربری" name="frm[email]" autofocus>
<input type="password" class="form-control" name="frm[password]" placeholder="کلمه عبور">
<label class="checkbox">
<input type="checkbox" value="remember-me"> مرا به خاطر بسپار
<span class="pull-right"> <a href="#"> کلمه عبور را فراموش کرده اید؟</a></span>
</label>
<button class="btn btn-lg btn-login btn-block" type="submit" name="btn">ورود</button>
</div>
</form>
</div>
</body>
</html>