Subversion Repositories Kolibri OS

Rev

Rev 7244 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7244 Rev 7245
Line 179... Line 179...
179
	panel_y = Form.cheight - PANEL_H /2 - 5;
179
	panel_y = Form.cheight - PANEL_H /2 - 5;
Line 180... Line 180...
180
 
180
 
Line 181... Line 181...
181
	DrawBar(0,0, Form.cwidth, Form.cheight, system.color.work);
181
	DrawBar(0,0, Form.cwidth, Form.cheight, system.color.work);
182
	
-
 
183
	WriteText(panel_x,panel_y-3,0x80,system.color.work_text,"Your Email:");
-
 
184
	login_box.left = panel_x+3;
182
	
Line 185... Line 183...
185
	login_box.top = panel_y+12;
183
	WriteText(panel_x,panel_y-3,0x80,system.color.work_text,"Your Email:");
186
	DrawEditBox(#login_box);
-
 
187
	
-
 
188
	WriteText(panel_x,panel_y+45,0x80,system.color.work_text,"Password:");
184
	DrawEditBoxPos(panel_x+3, panel_y+12, #login_box);
Line 189... Line 185...
189
	pass_box.left = panel_x+3;
185
	
190
	pass_box.top = panel_y+60;
186
	WriteText(panel_x,panel_y+45,0x80,system.color.work_text,"Password:");
191
	DrawEditBox(#pass_box);
187
	DrawEditBoxPos(panel_x+3, panel_y+60, #pass_box);
192
	
188