aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-02-26 19:38:19 +0100
committerChristian Schneppe <christian@pix-art.de>2018-03-08 20:32:06 +0100
commitb95bdbe791a8b7609b46ec5b9c089b2dc2461314 (patch)
treebd7ffe2d4416c29db9c3c8d624e225988b7022f9 /src/main/res/layout
parent06014f81e5e312bf0dec557fb23ba49d37ba3270 (diff)
implement multi accounts via expert settings
Diffstat (limited to 'src/main/res/layout')
-rw-r--r--src/main/res/layout/password.xml12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/main/res/layout/password.xml b/src/main/res/layout/password.xml
index db8d82505..2037f3787 100644
--- a/src/main/res/layout/password.xml
+++ b/src/main/res/layout/password.xml
@@ -5,9 +5,17 @@
android:layout_height="match_parent">
<EditText
+ android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:inputType="textPassword"
android:hint="@string/account_settings_password"
- android:id="@+id/password" />
+ android:inputType="textPassword" />
+
+ <EditText
+ android:id="@+id/confirm_password"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:hint="@string/confirm_password"
+ android:inputType="textPassword"
+ android:visibility="gone"/>
</LinearLayout> \ No newline at end of file