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

Merge branch '一覧画面_遷移リンク修正' into 'master'

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

See merge request !29
parents dcd3b615 c0fd8512
......@@ -294,6 +294,9 @@ html, body, .wrapper{
width: 100%;
background: #1abc9c;
color: #fff;
position: sticky;
top: 0;
z-index: 1;
}
.header-top-content{}
......
......@@ -45,9 +45,9 @@
<div class="header-top-menu">
<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>
</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