|
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> |
7 | 7 | <title>Microsoft identity platform</title> |
8 | 8 | <link rel="SHORTCUT ICON" href="./favicon.svg" type="image/x-icon"> |
| 9 | + <link rel="stylesheet" href="./styles.css"> |
| 10 | + |
9 | 11 |
|
10 | 12 | <!-- msal.min.js can be used in the place of msal.js; included msal.js to make debug easy --> |
11 | 13 | <script id="load-msal" src="https://alcdn.msauth.net/browser/2.31.0/js/msal-browser.js" |
12 | 14 | integrity="sha384-BO4qQ2RTxj2akCJc7t6IdU9aRg6do4LGIkVVa01Hm33jxM+v2G+4q+vZjmOCywYq" |
13 | 15 | crossorigin="anonymous"></script> |
14 | 16 |
|
15 | | - <!-- adding Bootstrap 4 for UI components --> |
16 | | - <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> |
| 17 | + <!-- adding Bootstrap 5 for UI components --> |
| 18 | + <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous"> |
17 | 19 | </head> |
18 | 20 |
|
19 | 21 | <body> |
20 | | - <nav class="navbar navbar-expand-lg navbar-dark bg-primary"> |
| 22 | + <nav class="navbar navbar-expand-lg navbar-dark bg-primary navbarStyle"> |
21 | 23 | <a class="navbar-brand" href="/">Microsoft identity platform</a> |
22 | | - <div class="btn-group ml-auto dropleft"> |
| 24 | + <div class="collapse navbar-collapse justify-content-end"> |
23 | 25 | <button type="button" id="signIn" class="btn btn-secondary" onclick="signIn()">Sign-in</button> |
24 | 26 | <button type="button" id="signOut" class="btn btn-success d-none" onclick="signOut()">Sign-out</button> |
25 | 27 | </div> |
@@ -50,12 +52,10 @@ <h5 id="welcome-div" class="card-header text-center d-none"></h5> |
50 | 52 | <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" |
51 | 53 | integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"> |
52 | 54 | </script> |
53 | | - <script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js" |
54 | | - integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"> |
55 | | - </script> |
56 | | - <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js" |
57 | | - integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"> |
58 | | - </script> |
| 55 | + <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script> |
| 56 | + |
| 57 | + <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script> |
| 58 | + |
59 | 59 |
|
60 | 60 | <!-- importing app scripts (load order is important) --> |
61 | 61 | <script type="text/javascript" src="./authConfig.js"></script> |
|
0 commit comments