account.ejstouch src/views/pages/account.ejs
account.ejs<h1>Account profile</h1>
<p><strong>Name:</strong> <%= user.name %></p>
<p><strong>Email:</strong> <%= user.email %></p>
<div>
<form method="POST" action="auth/logout">
<button type="submit" class="btn btn-link px-0">Logout</button>
</form>
</div>
npm run dev
git add .
git commit -m 'Adds account views'
Next:
Next Section Add data