diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-11-22 22:25:34 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-11-22 22:25:34 -0500 |
| commit | afde9fd65fd6221b47504cc2c32d7f80c8654aa4 (patch) | |
| tree | a462ee46b093961d49381f7fae478c7afe876660 /StoneIsland/www/js/lib/auth/LoginView.js | |
| parent | fa9d1c62c8cc4b39caee69b1ba31401f0d4aac66 (diff) | |
ability to preload data
Diffstat (limited to 'StoneIsland/www/js/lib/auth/LoginView.js')
| -rw-r--r-- | StoneIsland/www/js/lib/auth/LoginView.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/StoneIsland/www/js/lib/auth/LoginView.js b/StoneIsland/www/js/lib/auth/LoginView.js index 701a6a36..b088190f 100644 --- a/StoneIsland/www/js/lib/auth/LoginView.js +++ b/StoneIsland/www/js/lib/auth/LoginView.js @@ -16,9 +16,13 @@ var LoginView = FormView.extend({ }, show: function(){ + var msg = "* Your personal and payment<br>information will always remain private" + if (auth.logged_in()) { + msg += "<br><br>You are already logged in." + } app.footer.show("SUBMIT", "CANCEL") this.$form.get(0).reset() - this.$msg.html("* Your personal and payment<br />information will always remain private") + this.$msg.html(msg) document.body.className = "login" }, |
