forked from asrifin/sister
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
43 lines (41 loc) · 1.42 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
<?php
session_start();
if(isset($_SESSION['loginS']) and !empty($_SESSION['loginS']) ){
require_once 'indexs.php';
}else{
?>
<html>
<head>
<title>.:SISTER:.</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1 " />
<script src="js/jquery-1.8.3.min.js"></script>
<!-- site style -->
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen" />
<!--[if lt IE 10]> <link href="css/styleIE.css" rel="stylesheet" type="text/css" media="screen" /> <![endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<img src="img/gear.png" id="OptionColor" />
<img src="img/picture.png" id="OptionBack" />
<div class="LoginBox">
<img src="img/avatar.png" />
<h2 class="loginMessage"></h2>
<div class="fields">
<form autocomplete="off" zonsubmit="loginFC();" id="frmLogin" />
<input type="hidden" id="pass2TB" name="pass2TB" /> <p />
<input type="text" id="userTB" name="userTB" placeholder="Username" /> <p />
<input type="password" id="passTB" xname="passTB" placeholder="Password" />
<button id="botLogIn"></button>
<img src="img/eye.png" class="seePass" />
</form>
</div>
</div>
<!-- javascript for login -->
<script src="js/jquery.md5.js"></script>
<!--<script src="js/base64.js"></script>-->
<script src="js/MetroLogin.js"></script>
</body>
</html>
<?php
}
?>