-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignup
72 lines (66 loc) · 2.59 KB
/
Signup
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.pagli.myfirebasemersing.SignUpActivity"
android:background="#ffffff">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/email"
android:hint="Email"
android:layout_above="@+id/password"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/password"
android:hint="Password"
android:layout_centerVertical="true"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Sign Up Now"
android:id="@+id/button"
android:layout_below="@+id/password"
android:layout_alignParentStart="true"
android:layout_marginTop="47dp"
android:background="#d43104"
android:textColor="#fff"
android:layout_alignParentEnd="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Forgot password"
android:id="@+id/button2"
android:width="160dp"
android:textColor="#fff"
android:background="#cb507b4d"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Login Now"
android:width="160dp"
android:id="@+id/button3"
android:background="#cb507b4d"
android:textColor="#fff"
android:layout_alignBottom="@+id/button2"
android:layout_alignParentEnd="true" />
<ImageView
android:layout_width="match_parent"
android:layout_height="65dp"
android:id="@+id/imageView"
android:src="@drawable/logo"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>