diff options
| author | Syndamia <kamen@syndamia.com> | 2025-01-26 14:02:48 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2025-01-26 14:02:48 +0200 |
| commit | 637b86f1a221f09d1cdfb35030b7ab056add422d (patch) | |
| tree | aff6324fd0e96286aaaa2c6bc497ebec9561177e /views/global/footer.php | |
| parent | 3a2176a1c6a1c367b4677a68a80df35578160c72 (diff) | |
| download | nowayforward_human-637b86f1a221f09d1cdfb35030b7ab056add422d.tar nowayforward_human-637b86f1a221f09d1cdfb35030b7ab056add422d.tar.gz nowayforward_human-637b86f1a221f09d1cdfb35030b7ab056add422d.zip | |
feat(views): Implement a proper router
Diffstat (limited to 'views/global/footer.php')
| -rw-r--r-- | views/global/footer.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/global/footer.php b/views/global/footer.php new file mode 100644 index 0000000..22c4631 --- /dev/null +++ b/views/global/footer.php @@ -0,0 +1,16 @@ + </article> +</body> +<script type="text/javascript"> + function eval_callbacks() { + if (authentication_response === null) { + setTimeout(eval_callbacks, 50); + } + else if (authentication_response !== "") { + for (callback of authentication_callbacks) { + callback(authentication_response); + } + } + } + eval_callbacks(); +</script> +</html> |
