Advertisement
Guest User

Untitled

a guest
Mar 6th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. #:kivy 1.10.0
  2.  
  3. Root:
  4. #my_text_box: my_text_box
  5. my_name: my_name
  6. my_username: my_username
  7. my_password: my_password
  8.  
  9. BoxLayout:
  10. orientation: 'vertical'
  11.  
  12. BoxLayout:
  13. size: root.size
  14. pos: root.pos
  15. #size_hint_y: 0.3
  16. Label:
  17. text: 'Name:'
  18. TextInput:
  19. id: my_name
  20. text: ''
  21. multiline: False
  22. Label:
  23. text: 'Username:'
  24. #size_hint_y: 0.3
  25. TextInput:
  26. id: my_username
  27. text: ''
  28. multiline: False
  29. #size_hint_y: 0.3
  30. Label:
  31. text: 'Password:'
  32. #size_hint_y: 0.3
  33. TextInput:
  34. id: my_password
  35. text: ''
  36. password: True
  37. multiline: False
  38. #size_hint_y: 0.3
  39.  
  40. BoxLayout:
  41. size_hint_y: None
  42. #height: 30
  43. Button:
  44. text: 'Create Account'
  45. on_press: root.save_to_database()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement