Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
E
Ecsite
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
shoei.kanno
Ecsite
Commits
62cb19b1
Commit
62cb19b1
authored
Oct 17, 2020
by
shoei.kanno
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '購入履歴画面デザイン' into 'master'
購入履歴画面デザイン完成(ルーティングはまだできていません) See merge request
!16
parents
fa41d7e0
8718ed08
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
184 additions
and
2 deletions
+184
-2
style.css
src/main/resources/static/css/style.css
+18
-0
cart.html
src/main/resources/templates/cart.html
+13
-1
fistory.html
src/main/resources/templates/fistory.html
+152
-0
login.html
src/main/resources/templates/login.html
+1
-1
No files found.
src/main/resources/static/css/style.css
View file @
62cb19b1
...
...
@@ -1754,3 +1754,20 @@ label {
#total-price-span
{
margin-left
:
20px
;
}
/* 購入履歴画面 */
#history-p-text
{
font-size
:
40px
;
text-align
:
center
;
margin
:
100px
0
;
}
#history-text
{
border-bottom
:
2px
solid
#1abc9c
;
color
:
#555252
;
}
#history-table
{
color
:
#000
;
width
:
100%
;
}
\ No newline at end of file
src/main/resources/templates/cart.html
View file @
62cb19b1
...
...
@@ -10,7 +10,7 @@
<link
rel=
"stylesheet"
href=
"css/style.css"
th:href=
"@{/css/style.css}"
/>
<link
rel=
"stylesheet"
href=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css"
integrity=
"sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M"
crossorigin=
"anonymous"
/>
<title>
Mart - HTML5 Resoponsive onepage e-commerce template
</title>
<title>
Limited Cart
</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
...
...
@@ -31,6 +31,18 @@
</ul>
</div>
</div>
<div
class=
"col-md-6"
>
<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=
"@{/cart/{id}(id=${user.id})}"
>
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>
</div>
</div>
</div>
</div>
</section>
...
...
src/main/resources/templates/fistory.html
0 → 100644
View file @
62cb19b1
<!doctype html>
<html
class=
"no-js"
lang=
"en"
xmlns:th=
"http://www.thymeleaf.org"
>
<head>
<meta
charset=
"utf-8"
/>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge,chrome=1"
/>
<meta
name=
"description"
content=
""
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<link
rel=
"icon"
href=
"images/favicon.png"
th:href=
"@{/images/favicon.png}"
/>
<link
rel=
"stylesheet"
href=
"css/style.css"
th:href=
"@{/css/style.css}"
/>
<link
rel=
"stylesheet"
href=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css"
integrity=
"sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M"
crossorigin=
"anonymous"
/>
<title>
Limited History
</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
<![endif]-->
</head>
<body>
<section
class=
"header-top-section"
>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-md-6"
>
<div
class=
"header-top-content"
>
<ul
class=
"nav nav-pills navbar-left"
>
<li><a
href=
"#"
><i
class=
"pe-7s-call"
></i><span>
123-123456789
</span></a></li>
<li><a
href=
"#"
><i
class=
"pe-7s-mail"
></i><span>
info@mart.com
</span></a></li>
</ul>
</div>
</div>
<div
class=
"col-md-6"
>
<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=
"@{/cart/{id}(id=${user.id})}"
>
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>
</div>
</div>
</div>
</div>
</section>
<header
class=
"header-section"
>
<nav
class=
"navbar navbar-default"
>
<div
class=
"container"
>
<!-- Brand and toggle get grouped for better mobile display -->
<div
class=
"navbar-header"
>
<button
type=
"button"
class=
"navbar-toggle collapsed"
data-toggle=
"collapse"
data-target=
"#bs-example-navbar-collapse-1"
aria-expanded=
"false"
>
<span
class=
"sr-only"
>
Toggle navigation
</span>
<span
class=
"icon-bar"
></span>
<span
class=
"icon-bar"
></span>
<span
class=
"icon-bar"
></span>
</button>
<a
class=
"navbar-brand"
href=
"#"
><b>
L
</b>
imited
</a>
</div>
</div>
<!-- /.container -->
</nav>
</header>
<!-- ログインフォーム -->
<div
class=
"container"
>
<p
id=
"history-p-text"
><span
id=
"history-text"
>
Purchase History
</span></p>
<!--<form id="login-form" method="post" th:action="@{/login}">
<div id="email-form">
<label for="login-email">Email</label>
<input type="email" class="login" name="email" id="login-email" placeholder="Email" required="required"/>
</div>
<div id="password-form">
<label for="login-password">Password</label>
<input type="password" class="login" name="password" id="login-password" placeholder="Password" required="required"/>
</div>
<div id="submit-form">
<input type="submit" class="login" id="btn" value="Login"/>
<!-- 会員登録ボタン -->
<!--<button class="js-modal-open" id="sign-up">Sign Up</button>
</div>
</form>-->
<!-- 購入履歴一覧 -->
<div
id=
"history"
>
<table
id=
"history-table"
>
<thead
class=
"thead"
>
<tr
class=
"row"
id=
"theadTr"
>
<th
class=
"th col-xl-4"
id=
"imageTh"
>
Image
</th>
<th
class=
"th col-xl-4"
id=
"productNameTh"
>
Product Name
</th>
<th
class=
"th col-xl-4"
id=
"priceTh"
>
Price
</th>
</tr>
</thead>
<tbody>
<tr
class=
"row tr"
>
<td
class=
"td col-xl-4"
><img
src=
"images/スニーカー2.jpg"
/></td>
<td
class=
"td col-xl-4"
><p
class=
"textP"
>
Convers All Star
</p></td>
<td
class=
"td col-xl-4"
><p
class=
"textP"
>
¥
10000
</p></td>
</tr>
<tr
class=
"row tr"
>
<td
class=
"td col-xl-4"
><img
src=
"images/スニーカー2.jpg"
/></td>
<td
class=
"td col-xl-4"
><p
class=
"textP"
>
Convers All Star
</p></td>
<td
class=
"td col-xl-4"
><p
class=
"textP"
>
¥
10000
</p></td>
</tr>
<tr
class=
"row tr"
>
<td
class=
"td col-xl-4"
><img
src=
"images/スニーカー2.jpg"
/></td>
<td
class=
"td col-xl-4"
><p
class=
"textP"
>
Convers All Star
</p></td>
<td
class=
"td col-xl-4"
><p
class=
"textP"
>
¥
10000
</p></td>
</tr>
<tr
class=
"row tr"
>
<td
class=
"td col-xl-4"
><img
src=
"images/スニーカー2.jpg"
/></td>
<td
class=
"td col-xl-4"
><p
class=
"textP"
>
Convers All Star
</p></td>
<td
class=
"td col-xl-4"
><p
class=
"textP"
>
¥
10000
</p></td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- footer -->
<footer
class=
"footer"
id=
"login-footer"
>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-md-12"
>
<p
class=
"center"
>
Made with
<i
class=
"fa fa-heart"
></i>
by
<a
href=
"https://revolthemes.net/"
target=
"_blank"
>
Limited
</a>
. All Rights Reserved
</p>
</div>
</div>
</div>
</footer>
<!-- モーダル用 -->
<script
src=
"http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"
></script>
<!-- JQUERY -->
<!-- <script src="js/vendor/jquery-1.11.2.min.js" th:src="@{/js/vendor/jquery-1.11.2.min.js}"></script>
<script src="js/vendor/bootstrap.min.js" th:src="@{/js/vendor/bootstrap.min.js}"></script>
<script src="js/isotope.pkgd.min.js" th:src="@{/js/isotope.pkgd.min.js}"></script>
<script src="js/owl.carousel.min.js" th:src="@{/js/owl.carousel.min.js}"></script>
<script src="js/wow.min.js" th:src="@{/js/wow.min.js}"></script>
<script src="js/custom.js" th:src="@{/js/custom.js}"></script>-->
<script
src=
"js/cart.js"
th:src=
"@{/js/cart.js}"
></script>
<!-- BootStrap -->
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script> -->
</body>
</html>
src/main/resources/templates/login.html
View file @
62cb19b1
...
...
@@ -10,7 +10,7 @@
<meta
name=
"_csrf_header"
th:content=
"${_csrf.headerName}"
/>
<link
rel=
"icon"
href=
"images/favicon.png"
th:href=
"@{/images/favicon.png}"
/>
<link
rel=
"stylesheet"
href=
"css/style.css"
th:href=
"@{/css/style.css}"
/>
<title>
Mart - HTML5 Resoponsive onepage e-commerce template
</title>
<title>
Limited
</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment