mirror of
https://github.com/DerTyp7/shop-ejs-expressjs.git
synced 2025-10-29 12:32:11 +01:00
added account
This commit is contained in:
22
views/account.ejs
Normal file
22
views/account.ejs
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<%- include('partials/head'); %>
|
||||
<link rel="stylesheet" href="/css/account.css">
|
||||
</head>
|
||||
<body>
|
||||
<%- include('partials/header'); %>
|
||||
<h1>Ihr Konto</h1>
|
||||
<div id="account-info">
|
||||
<h3>Persönliche Informationen</h3>
|
||||
<p><b>Vorname:</b> <%= firstname %></p>
|
||||
<p><b>Nachname:</b> <%= lastname %></p>
|
||||
<p><b>Benutzername: </b><%= username %></p>
|
||||
</div>
|
||||
|
||||
<div id="order-info">
|
||||
<h3>Ihre Bestellungen</h3>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user