Skip to content
This repository has been archived by the owner on May 28, 2020. It is now read-only.

Commit

Permalink
构建基本前台网页外观
Browse files Browse the repository at this point in the history
  • Loading branch information
kagurazakayashi committed Oct 18, 2015
1 parent 8dba9a6 commit c9d0ef1
Show file tree
Hide file tree
Showing 7 changed files with 75 additions and 0 deletions.
Binary file added dev/Background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dev/code.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dev/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dev/none.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dev/plus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions dev/store.html
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>&nbsp;</td>
<td>&nbsp;</td>
<td align="center">&nbsp;</td>
</tr>
<tr>
<td colspan="3" align="center">(C) 云颜文字社区 2015 / 神楽坂雅詩</td>
</tr>
</tbody>
</table>
</body>
</html>
22 changes: 22 additions & 0 deletions index.php
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>

0 comments on commit c9d0ef1

Please sign in to comment.