This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/resources/templates/intern/customers_order_detailview....

101 lines
3.5 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<title>Bestell -und Buchungsübersicht</title>
<link rel="stylesheet" th:href="@{/css/ecom.css}" />
<link rel="stylesheet" th:href="@{/css/NoFocus.css}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
</head>
<body>
<nav class='hero'>
<div class='content-width bar-flex'>
<h1>Project eCommerce</h1>
<button>Angebote</button>
<div class='spacer input-icon secondary'>
<input type="text" placeholder="Nach Produkten suchen..."/>
<button>Finden</button>
</div>
<button>Login</button>
</div>
</nav>
<main>
<div class="content-width">
<h1>Bestelldetails</h1>
<div class="grid l">
<section class="hero">
<h3>Allgemeineinformationen</h3>
<p>Die Bestellung wurde am 01.01.2020 bestellt</p>
<p>Bestellnummer: 614899499</p>
<p>Letzte Ziffern der Karte: 578</p>
</section>
<section class="hero">
<h3>Versandinformationen</h3>
<p>Name<br>Straße<br>Ort, plz<br>Deutschland</p>
</section>
<section class="hero">
<h3>Preiszusammensetzung</h3>
<div class="grid s">
<section class="noMargin noPadding">
<p>Startwert<br>Versand<br>Bonuspunkte</p>
<p>Gesamtsumme</p>
</section>
<section class="noMargin noPadding">
<p>6,00 EUR<br>3,00 EUR<br>-1,00 EUR</p>
<p>9,52 EUR</p>
</section>
</div>
</section>
</div>
<div class="vertical-spacer s"></div>
<h1>Bestellte Artikel</h1>
<div class='grid m shadow'>
<section class="hero">
<h2>Lorem Ipsum</h2>
<img src="../img/product-1.jpg">
<h3>Menge: 1</h3>
<p class='price'> 25.14 €</p>
<p>
Als Gregor Samsa eines Morgens aus unruhigen Träumen erwachte.
</p>
</section>
<section class="hero">
<h2>Lorem Ipsum</h2>
<img src="../img/product-1.jpg">
<h3>Menge: 4</h3>
<p class='price'> 25.14 €</p>
<p>
Als Gregor Samsa eines Morgens aus unruhigen Träumen erwachte.
</p>
</section>
</div>
</div>
</main>
<footer class="hero-black">
<div class='content-width bar-flex'>
<h3>Project eCommerce</h3>
<div class="spacer"></div>
<div>
<h4>Seite</h4>
<ul>
<li><a>Login</a></li>
<li><a>Angebote</a></li>
<li><a>Suche</a></li>
<li><a>Mitarbeiter Login</a></li>
</ul>
</div>
<div>
<h4>Mehr</h4>
<ul>
<li><a>Nutzungsbedingungen</a></li>
<li><a>Datenschutz</a></li>
<li><a>Über</a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>