diff --git a/src/oidc_templates/login.ejs b/src/oidc_templates/login.ejs index 422712679..405c0143e 100644 --- a/src/oidc_templates/login.ejs +++ b/src/oidc_templates/login.ejs @@ -48,6 +48,26 @@ display: none; } + #busyIndicator { + display: inline-block; + width: 15px; + height: 15px; + border: 1px solid rgba(255,255,255,.3); + border-radius: 50%; + border-top-color: #fff; + animation: spin 1s ease-in-out infinite; + margin-right: 5px; + } + + @keyframes spin { + to { transform: rotate(360deg); } + } + + .btn { + display: flex; + align-items: center; + } + @@ -85,7 +105,7 @@