-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
58 lines (54 loc) · 2.29 KB
/
Copy pathindex.php
File metadata and controls
58 lines (54 loc) · 2.29 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
49
50
51
52
53
54
55
56
57
58
<!-----------------------------------------------
Project HIMS
"Here's my story"
-----------------------------------------------
File: index.php [Prototype]
-----------------------------------------------
Director: elik (Elisey Yakovlev)
Programmer: SnipGhost (Mikhail Kucherenko)
-----------------------------------------------
(C) 2016, Freedom Bits Team
------------------------------------------------->
<?php require_once('php/packcage.php'); ?>
<!doctype html>
<?php echo '<html lang="'.$SYS['loc'].'">'; ?>
<head>
<title>Demo</title>
<meta http-equiv="Content-Language" content="ru">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta property="og:title" content="Here’s my story" />
<!-- <meta property="og:description" content="" /> -->
<!-- <meta property="og:url" content="//alicization.tk/hims/" /> -->
<meta property="og:image" content="img/button.jpg" />
<link href="css/style.css" media="all" rel="stylesheet" />
<link href="css/menu.css" media="all" rel="stylesheet" />
<link href="css/login.css" media="all" rel="stylesheet" />
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/interface.js"></script>
</head>
<body>
<div class="header noselect">
<div class="marker">M</div>
<div class="btn" style="margin-top: 30px;"></div><br>
<a href="#" id="btn1" class="btn"><?php echo $LOC['stories']; ?></a>
<hr>
<a href="#" id="btn2" class="btn"><?php echo $LOC['create']; ?></a>
<hr>
<a href="#" id="btn3" class="btn"><?php echo $LOC['my-tst']; ?></a>
<hr>
<a href="#" id="btn4" class="btn"><?php echo $LOC['profile']; ?></a>
<hr>
<a href="#" id="btn5" class="btn"><?php echo $LOC['info']; ?></a>
</div>
<div class="wrapper">
<input id="tend" type="hidden" value="<?php echo $LOC['button-end']; ?>">
<input id="tstd" type="hidden" value="<?php echo $LOC['button-std']; ?>">
<?php require_once('php/view.php'); ?>
</div>
<form class="login" action="" method="POST">
<input name="username" type="text" class="field" placeholder="username" required/>
<input name="password" type="password" class="field" placeholder="password" required/>
<input name="startmsg" type="submit" class="button" value="LogIn"/>
</form>
</body>
</html>