Built files from Bizgaze WebServer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

signupsuccesspage.js 2.0KB

1234567891011121314151617181920212223242526272829303132333435
  1. var Unibase;
  2. (function (Unibase) {
  3. let Themes;
  4. (function (Themes) {
  5. let Compact;
  6. (function (Compact) {
  7. let Components;
  8. (function (Components) {
  9. class SignupSuccessPage extends Unibase.Platform.Core.BaseComponent {
  10. init(container) {
  11. this.render(container, null);
  12. }
  13. render(container, callback) {
  14. const html = '<form><div id="div_TenantSuccess" ><div class="d-62 bg-white rounded-circle mb-10 d-flex align-items-center justify-content-center mx-auto" ><i class="fa fa-check font-50 text-success" ></i></div><h1 class="display-4 mb-20 text-center" > Tenant Created Successfully </h1><p class="text-center" ><a href="/Index.html" > Click here to Login </a></p></div></form>';
  15. const cacheHelper = this.fileCacheHelper;
  16. cacheHelper.loadJsFile("tenants/themes/compact/index.anonymous.js", function () {
  17. if (jQuery("#external-form").length === 0) {
  18. jQuery(".preloader-it").delay(500).fadeOut("slow");
  19. jQuery("#external-container").delay(500).fadeIn("slow");
  20. jQuery("#bizgaze_body").css("background-color", "#f4f6f7");
  21. }
  22. jQuery("#external-form").html(html);
  23. if (callback != null)
  24. callback();
  25. });
  26. }
  27. static Instance() {
  28. return new SignupSuccessPage();
  29. }
  30. }
  31. Components.SignupSuccessPage = SignupSuccessPage;
  32. })(Components = Compact.Components || (Compact.Components = {}));
  33. })(Compact = Themes.Compact || (Themes.Compact = {}));
  34. })(Themes = Unibase.Themes || (Unibase.Themes = {}));
  35. })(Unibase || (Unibase = {}));