diff options
author | Vitaly Takmazov | 2018-03-02 14:54:23 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-03-02 12:44:39 +0000 |
commit | f17f861e292988327f5084e578f5a0e512033553 (patch) | |
tree | 8e8821fba6d86ee4f3be448193e0331f7d7b4764 /juick-www/src/main/resources/templates | |
parent | 15790c737b87b528f3a8eda4d4cb559220223bd6 (diff) |
www: blank redirect for js login
Diffstat (limited to 'juick-www/src/main/resources/templates')
-rw-r--r-- | juick-www/src/main/resources/templates/views/login_success.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/juick-www/src/main/resources/templates/views/login_success.html b/juick-www/src/main/resources/templates/views/login_success.html new file mode 100644 index 00000000..ee71f12f --- /dev/null +++ b/juick-www/src/main/resources/templates/views/login_success.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Blank window</title> +</head> +<body> + <script type="text/javascript"> + window.opener.postMessage("{{ hash }}", "*"); + window.close(); + </script> +</body> +</html> |