-
Notifications
You must be signed in to change notification settings - Fork 0
/
verify.kv
30 lines (30 loc) · 813 Bytes
/
verify.kv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<VerifyOTP>:
BoxLayout:
orientation:'vertical'
spacing:50
padding:[10,50,10,50]
BoxLayout:
orientation:'horizontal'
size_hint_y:.1
Button:
text:'Back'
on_press:root.go_forgotpassword()
size_hint_x:.3
Label:
text:' '
markup:True
Label:
text:'[color=3ca72b][font=Broadway]Forgot Password[/font][/color]'
font_size:44
size_hint:1,.4
markup:True
TextInput:
id:otp
hint_text:'OTP'
size_hint:1,.1
font_size:18
text:''
Button:
text:'Verify'
size_hint:1,.1
on_press:root.verify(otp.text)