Skip to content

Commit

Permalink
Revise SAML RelayState location handling in acme-webapp-saml-node-exp…
Browse files Browse the repository at this point in the history
…ress
  • Loading branch information
thomasdarimont committed Jun 6, 2024
1 parent e6886d4 commit 82c41b1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions apps/acme-webapp-saml-node-express/views/pages/page1.ejs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<%- include('../partials/head'); %>
</head>
<body class="container">

<header>
<%- include('../partials/header'); %>
</header>

<main>
<div class="jumbotron">
<h1>Page 1</h1>
<h1>Welcome User: <%= user.username %></h1>
<ul>
<li>Firstname: <%= user.firstname %></li>
<li>Lastname: <%= user.lastname %></li>
<li>E-Mail: <%= user.email %></li>
</ul>
</div>
</main>

<footer>
<%- include('../partials/footer'); %>
</footer>

</body>
</html>

0 comments on commit 82c41b1

Please sign in to comment.