Skip to content

Instantly share code, notes, and snippets.

@phm200
Created September 11, 2018 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phm200/ad3d3e8ea4d79346db0d41efdeb17c0a to your computer and use it in GitHub Desktop.
Save phm200/ad3d3e8ea4d79346db0d41efdeb17c0a to your computer and use it in GitHub Desktop.
Connect User API Express App - user pug view
html
head
title= title
link(rel="stylesheet" href="../css/base.css")
body
h2= "Details for " + user.Username
ul
li= "ARN: " + user.Arn
li= "First Name: " + user.IdentityInfo.FirstName
li= "Last Name: " + user.IdentityInfo.LastName
li= "Routing Profile Id: " + user.RoutingProfileId
br
a(href="../") #{"Back"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment