a broker system for Supercredit
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

29 lines
693B

  1. var loginform = {
  2. width: 500,
  3. view:"form", scroll:false,
  4. container:"login",
  5. padding:50,
  6. css: "login_form",
  7. "rows": [
  8. {
  9. "view": "form",
  10. "autoheight": true,
  11. "rows": [
  12. { "view": "text", "label": "email", "name": "email", "type": "email" },
  13. { "view": "text", "label": "Password", "name": "pass", "type": "password" },
  14. { "label": "Login", "view": "button", "height": 38, "borderless": 1 ,
  15. click: function(ev, id){
  16. window.location.href = "dashboard.html";
  17. }
  18. }
  19. ],
  20. "borderless": 1,
  21. "height": null,
  22. },
  23. { "template": "Please enter your password and email to login", "view": "template", "borderless": 1 }
  24. ]
  25. };
  26. webix.ui(loginform);