added account

This commit is contained in:
Janis M
2022-03-28 14:46:15 +02:00
parent a0f059d955
commit 6fc6f1e9be
4 changed files with 78 additions and 7 deletions

22
views/account.ejs Normal file
View 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>