aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_input_password.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/res/layout/activity_input_password.xml')
-rw-r--r--app/res/layout/activity_input_password.xml65
1 files changed, 65 insertions, 0 deletions
diff --git a/app/res/layout/activity_input_password.xml b/app/res/layout/activity_input_password.xml
new file mode 100644
index 0000000..a024879
--- /dev/null
+++ b/app/res/layout/activity_input_password.xml
@@ -0,0 +1,65 @@
+<merge xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ tools:context=".InputPasswordActivity" >
+
+
+
+ <ScrollView
+ android:id="@+id/login_form"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background = "@color/black" >
+
+ <LinearLayout
+ style="@style/LoginFormContainer"
+ android:orientation="vertical"
+ android:background="@color/black"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" >
+
+ <TextView
+ android:id="@+id/txt_insert_pass"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textCursorDrawable="@null"
+ android:textColor="@color/ThemeLight"
+ android:textSize="10pt"
+ android:layout_marginBottom="10dp"
+ android:background="@color/black"
+ android:maxLines = "10"
+ android:text="@string/insert_nets_password" />
+
+ <EditText
+ android:id="@+id/txt_password"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:inputType="textPassword"
+ android:textColor="@color/ThemeLight"
+ android:textSize="10pt"
+ android:maxLines="1"
+ android:singleLine="true" />
+
+ <CheckBox
+ android:id="@+id/chk_show_pass"
+ android:textColor="@color/ThemeLight"
+ android:text="@string/show_password"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+ <Button
+ android:id="@+id/sign_in_button"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:background="@color/ThemeDark"
+ android:textColor="@color/ThemeLight"
+ android:layout_gravity="right"
+ android:layout_marginTop="16dp"
+ android:paddingLeft="32dp"
+ android:paddingRight="32dp"
+ android:text="@string/button_text_next"
+ android:onClick="onBtnNextClick" />
+
+ </LinearLayout>
+ </ScrollView>
+
+</merge> \ No newline at end of file