mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-25 11:22:25 +00:00
79 lines
2.8 KiB
XML
79 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/main"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="32dp">
|
|
|
|
<TextView
|
|
android:text="@string/authentication_method_set_password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="24sp"
|
|
android:textColor="@color/primary_text_inverted"
|
|
android:id="@+id/textView2" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/authentication_method_password_explanation"
|
|
android:textColor="#FFFF00"
|
|
android:textStyle="bold"
|
|
android:layout_marginTop="24dp" />
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="24dp">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentStart="true"
|
|
android:id="@+id/textView4"
|
|
android:text="@string/set_password"/>
|
|
|
|
<EditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textPassword"
|
|
android:ems="10"
|
|
android:id="@+id/text_password"
|
|
android:layout_below="@+id/textView3"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_alignParentEnd="true"/>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/textView3"
|
|
android:text="@string/set_password_confirm"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_below="@+id/textView4"
|
|
/>
|
|
|
|
<EditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textPassword"
|
|
android:ems="10"
|
|
android:id="@+id/text_password_confirm"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_below="@+id/textView4"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentEnd="true"/>
|
|
|
|
<CheckBox
|
|
android:id="@+id/check_toggle_visibility"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:text="@string/show_password" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|