This repository has been archived by the owner on May 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8dba9a6
commit c9d0ef1
Showing
7 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<title>store</title> | ||
<style type="text/css"> | ||
body { | ||
background-repeat: no-repeat; | ||
background-image: url(); | ||
} | ||
</style> | ||
</head> | ||
|
||
<body bgcolor="#133518" text="#CFCFCF" link="#CFCFCF" vlink="#CFCFCF" alink="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> | ||
<div id="web_bg" style="position:absolute; width:100%; height:100%; z-index:-1"> | ||
<img style="position:fixed;" src="Background.jpg" height="100%" width="100%" /> | ||
</div> | ||
<table width="100%" border="0"> | ||
<tbody> | ||
<tr> | ||
<td height="51" colspan="3" align="center"><p><img src="logo.png" width="300" height="79" alt=""/></p> | ||
<p>序列号:09E868B2C6C346DF8251F22D957C3A54</p></td> | ||
</tr> | ||
<tr> | ||
<td width="120"><img src="none.gif" width="120" height="120" alt=""/></td> | ||
<td><h3>颜文字源名称</h3> | ||
<p>0000-00-00 KagurazakaYashi<br> | ||
JSONv1 uuu.moe<br> | ||
这是一个开发用的示例源,然而并没什么卯月。</p></td> | ||
<td align="center"><h3><img src="plus.png" width="28" height="28" alt=""/></h3> | ||
<p><img src="code.png" width="36" height="28" alt=""/></p></td> | ||
</tr> | ||
<tr> | ||
<td><img src="none.gif" width="120" height="120" alt=""/></td> | ||
<td><h3>颜文字源名称</h3> | ||
<p>0000-00-00 KagurazakaYashi<br> | ||
JSONv1 uuu.moe<br> | ||
这是一个开发用的示例源,然而并没什么卯月。</p></td> | ||
<td align="center"><h3><img src="plus.png" width="28" height="28" alt=""/></h3> | ||
<p><img src="code.png" width="36" height="28" alt=""/></p></td> | ||
</tr> | ||
<tr> | ||
<td> </td> | ||
<td> </td> | ||
<td align="center"> </td> | ||
</tr> | ||
<tr> | ||
<td colspan="3" align="center">(C) 云颜文字社区 2015 / 神楽坂雅詩</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html><head><meta charset="utf-8"><title>云颜文字·源商店:管理控制台</title></head><body> | ||
<center>云颜文字·源商店<h1>管理控制台</h1></center> | ||
<hr> | ||
<?php | ||
session_start(); | ||
$url = ""; | ||
if (isset($_SESSION['username'])) { | ||
if ($_SESSION['userflag'] == 1) { | ||
$url = "emostore_admin_alldata.php"; | ||
} | ||
if ($_SESSION['userflag'] == 0) { | ||
$url = "emostore_admin_login_ui.php?backurl=emostore_admin_alldata.php"; | ||
} | ||
}else{ | ||
$url = "emostore_admin_login_ui.php?backurl=emostore_admin_alldata.php"; | ||
} | ||
echo "<meta http-equiv=\"Refresh\" content=\"1;URL=".$url."\">"; | ||
echo "<center><i><a href='".$url."'>正在加载</a></i></center>"; | ||
include 'emostore_admin_sqlsetting.php'; | ||
echo $footer; | ||
?></body></html> |