From c60e8cdcd971ccb93870e611cc76c51628f8b604 Mon Sep 17 00:00:00 2001 From: nek0 Date: Sun, 24 Aug 2014 21:45:09 +0200 Subject: [PATCH] changed greeting --- static/js/activate.js | 2 +- static/js/login.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/activate.js b/static/js/activate.js index 0c9ae96..770bf4c 100644 --- a/static/js/activate.js +++ b/static/js/activate.js @@ -34,7 +34,7 @@ $('#activate').click(function(ev) { url: '/activate/' + token, success: function(response) { if (response && response.welcome) { - progress("Welcome to Bitlove!"); + progress("Welcome to Eidolon!"); document.location = response.welcome; } else { fail((response && response.error) || "Cannot activate"); diff --git a/static/js/login.js b/static/js/login.js index cf9ffab..06fdf38 100644 --- a/static/js/login.js +++ b/static/js/login.js @@ -36,7 +36,7 @@ $('#login').click(function(ev) { url: '/login', success: function(response) { if (response && response.welcome) { - progress("Welcome to Bitlove!"); + progress("Welcome to Eidolon!"); document.location = response.welcome; } else { fail((response && response.error) || "Cannot authenticate");