Commit c0fd8512 authored by issei.miyajima's avatar issei.miyajima

一覧画面での履歴画面への遷移リンク

ヘッダーcss修正
parent dcd3b615
...@@ -294,6 +294,9 @@ html, body, .wrapper{ ...@@ -294,6 +294,9 @@ html, body, .wrapper{
width: 100%; width: 100%;
background: #1abc9c; background: #1abc9c;
color: #fff; color: #fff;
position: sticky;
top: 0;
z-index: 1;
} }
.header-top-content{} .header-top-content{}
......
...@@ -45,9 +45,9 @@ ...@@ -45,9 +45,9 @@
<div class="header-top-menu"> <div class="header-top-menu">
<ul class="nav nav-pills navbar-right"> <ul class="nav nav-pills navbar-right">
<!-- 履歴ページへ遷移 --> <!-- 履歴ページへ遷移 -->
<li><a th:href="@{/log/{id}(id=${user.id})}">My Purchase Log</a></li> <li><a th:href="@{/limited/log/{id}(id=${user.id})}">My Purchase Log</a></li>
<!-- カートページへ遷移 --> <!-- カートページへ遷移 -->
<li><a th:href="@{/cart/{id}(id=${user.id})}">Cart</a></li> <li><a th:href="@{/cart}">Cart</a></li>
<!-- ログアウト --> <!-- ログアウト -->
<li><form th:action="@{/logout}" method="post"><input type="submit" value="logout" style="border:none;background-color:transparent;text-decoration:none;" class="logoutBtn"/></form></li> <li><form th:action="@{/logout}" method="post"><input type="submit" value="logout" style="border:none;background-color:transparent;text-decoration:none;" class="logoutBtn"/></form></li>
</ul> </ul>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment