2e21b0f99003529365ed5ac36be482c8f1a840da
[authserver.git] / authsystem.js
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3  * You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5 window.onload = function() {
6   var jsWarning = document.getElementById("jswarning");
7   if (jsWarning) {
8     document.getElementById("jswarning").classList.add("hidden");
9   }
10   var loginForm = document.getElementById("loginform");
11   if (loginForm) {
12     loginForm.classList.remove("hidden");
13   }
14 }