mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
74fc3889b9
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
28 lines
1.3 KiB
Handlebars
28 lines
1.3 KiB
Handlebars
<html>
|
|
<head>
|
|
<title>n8n - SAML Connection Test Result</title>
|
|
<style>
|
|
body { background: rgb(251,252,254); font-family: 'Open Sans', sans-serif; padding: 10px; margin: auto; width: 500px; top: 40%; position: relative; }
|
|
h1 { color: rgb(0, 0, 0); font-size: 16px; font-weight: 400; margin: 0 0 10px 0; }
|
|
h2 { color: rgb(0, 0, 0); font-size: 12px; font-weight: 400; margin: 0 0 10px 0; }
|
|
button { border: 1px solid rgb(219, 223, 231); background: rgb(255, 255, 255); border-radius: 4px; padding: 10px; }
|
|
ul { border: 1px solid rgb(219, 223, 231); border-radius: 4px; padding: 10px; }
|
|
li { decoration: none; list-style: none; margin: 0 0 0px 0; color: rgb(125, 125, 125); font-size: 12px;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="text-align:center">
|
|
<h1>SAML Connection Test was successful</h1>
|
|
<button onclick="window.close()">You can close this window now</button>
|
|
<p></p>
|
|
<h2>Here are the attributes returned by your SAML IdP:</h2>
|
|
<ul>
|
|
<li><strong>Email:</strong> {{#if email}}{{email}}{{else}}(n/a){{/if}}</li>
|
|
<li><strong>First Name:</strong> {{#if firstName}}{{firstName}}{{else}}(n/a){{/if}}</li>
|
|
<li><strong>Last Name:</strong> {{#if lastName}}{{lastName}}{{else}}(n/a){{/if}}</li>
|
|
<li><strong>UPN:</strong> {{#if userPrincipalName}}{{userPrincipalName}}{{else}}(n/a){{/if}}</li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|