We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d332dc commit 75f4f23Copy full SHA for 75f4f23
1 file changed
templates/index.html
@@ -5,10 +5,15 @@
5
</head>
6
<body>
7
<h1>Microsoft Identity Python Web App</h1>
8
- <h2>Powered by MSAL Python {{ version }}</h2>
9
- Welcome {{ user.get("name") }}!
10
- <li><a href='/graphcall'>Call Microsoft Graph API</a></li>
+ <h2>Welcome {{ user.get("name") }}!</h2>
+
+ {% if config.get("ENDPOINT") %}
11
+ <li><a href='/graphcall'>Call Microsoft Graph API</a></li>
12
+ {% endif %}
13
14
<li><a href="/logout">Logout</a></li>
15
+ <hr>
16
+ <footer style="text-align: right">Powered by MSAL Python {{ version }}</footer>
17
</body>
18
</html>
19
0 commit comments