a broker system for Supercredit
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

25 lines
598B

  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. ],
  16. "borderless": 1,
  17. "height": null
  18. },
  19. { "template": "Please enter your password and email to login", "view": "template", "borderless": 1 }
  20. ]
  21. };
  22. webix.ui(loginform);