-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfrontend.php
More file actions
164 lines (137 loc) · 4.71 KB
/
frontend.php
File metadata and controls
164 lines (137 loc) · 4.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php session_start(); ?>
<!DOCTYPE HTML>
<!--
Telemetry by Pixelarity
pixelarity.com | hello@pixelarity.com
License: pixelarity.com/license
-->
<html>
<head>
<title>Booth</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<link rel="stylesheet" href="assets/css/namecard.css" />
<link rel="shortcut icon" href="images/booth-32.ico" type="image/x-icon" />
</head>
<body id="top">
<!-- Header -->
<header id="header">
<!-- Logo -->
<div class="logo">
<a href="index.php">Booth</a><span> By NCYU stud.</span>
</div>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="index.php">Home</a></li>
<?php
if(isset($_SESSION["user_name"])==null)
{
echo '<li><a href="login.html">登入</a></li>';
}
if(isset($_SESSION["user_name"])!=null)
{
echo '<li><a href="logout.php">登出</a></li>';
echo '<li><a href="member.php" class="icon fa-user" >';
echo $_SESSION["user_name"];
echo '</a></li>';
}
?>
<li>
<a href="intro.php" class="icon fa-angle-down">介紹</a>
<ul>
<li><a href="staff.php">成員介紹</a></li>
<li>
<a href="intro.php">專題介紹</a>
<ul>
<li><a href="frontend.php">修改介紹</a></li>
<li><a href="backend.php">轉換介紹</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#" class="icon fa-angle-down">教學</a>
<ul>
<li><a href="generic.php">LESS變數</a></li>
<li><a href="generic2.php">Bootstrap混合</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<!-- Main -->
<section id="main" class="wrapper container">
<div class="inner">
<header>
<h1>修改</h1>
<p>修改流程圖</p>
</header>
<a href="images/frontendflow.jpg"><img src="images/frontendflow.png" alt="前端流程" style="width:100%;"/></a>
<header>
<h2>主要概念</h2>
<p>前端提供一個平台展現會員想修改的程式碼部分,並且實現一個線上的編輯器供使用者使用。並且使用者隨時隨地登入進行修改,即便是使用手機操作也方便輕鬆。</p>
</header>
<h4>使用者步驟</h4>
<ul>
<li>(新增專案)</li>
<li>選擇專案</li>
<li>(新增模板)</li>
<li>選擇模板</li>
<li>選擇欲修改部分</li>
<li>修改程式碼</li>
<li>更新上傳</li>
<li>得到URL</li>
</ul>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<div class="split style1">
<div class="contact">
<h2>Contact</h2>
<ul class="contact-icons">
<li class="icon fa-home"><a href="#">1234 Fictional Street #5432<br>Nashville, TN 00000-0000</a></li>
<li class="icon fa-phone"><a href="#">(000) 000-0000</a></li>
<li class="icon fa-envelope-o"><a href="#">info@untitled.tld</a></li>
</ul>
<ul class="icons-bordered">
<li><a class="icon fa-facebook" href="#">
<span class="label">Facebook</span>
</a></li>
<li><a class="icon fa-twitter" href="#">
<span class="label">Twitter</span>
</a></li>
<li><a class="icon fa-instagram" href="#">
<span class="label">Instagram</span>
</a></li>
<li><a class="icon fa-github" href="#">
<span class="label">GitHub</span>
</a></li>
<li><a class="icon fa-linkedin" href="#">
<span class="label">LinkedIn</span>
</a></li>
</ul>
</div>
</div>
<div class="copyright">
<p>© Untitled. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.selectorr.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>