-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_log_in.xml
More file actions
103 lines (94 loc) · 3.43 KB
/
activity_log_in.xml
File metadata and controls
103 lines (94 loc) · 3.43 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".LogIn">
<TextView
android:id="@+id/app_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:layout_marginLeft="3dp"
android:layout_marginRight="20dp"
android:layout_centerHorizontal="true"
android:text="COLLEGE PORTAL "
android:textSize="40dp"
android:textColor="@android:color/black"
/>
<TextView
android:id="@+id/login_heading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="45dp"
android:layout_marginLeft="100dp"
android:layout_marginRight="100dp"
android:layout_centerHorizontal="true"
android:layout_below="@id/app_name"
android:text=" LOGIN"
android:textSize="30dp"
android:textColor="@android:color/holo_purple"
/>
<EditText
android:id="@+id/email_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/login_heading"
android:layout_marginTop="40dp"
android:hint="USERNAME"
android:padding="35dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
/>
<EditText
android:id="@+id/pass_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/email_text"
android:layout_marginTop="4dp"
android:hint="PASSWORD"
android:padding="35dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
/>
<Button
android:id="@+id/login_btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/pass_text"
android:layout_marginTop="3dp"
android:padding="30dp"
android:layout_marginLeft="70dp"
android:layout_marginRight="70dp"
android:layout_centerHorizontal="true"
android:text="LOGIN"
android:textSize="20dp"
/>
<TextView
android:id="@+id/note_for_signup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginRight="20dp"
android:layout_below="@id/login_btn"
android:layout_centerHorizontal="true"
android:text=" if don't have account please Sign Up "
android:textSize="20dp"
android:background="@android:color/holo_blue_bright"
android:textColor="@android:color/holo_purple"
/>
<Button
android:id="@+id/signup_btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/note_for_signup"
android:layout_marginTop="10dp"
android:padding="30dp"
android:layout_marginLeft="70dp"
android:layout_marginRight="70dp"
android:layout_centerHorizontal="true"
android:text="SIGN UP"
android:textSize="20dp"
/>
</RelativeLayout>