2020-07-01 17:08:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout 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:orientation="vertical"
|
|
|
|
tools:context=".activities.Login">
|
|
|
|
|
|
|
|
<WebView
|
|
|
|
android:id="@+id/webView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
|
|
style="@style/Widget.AppCompat.ButtonBar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
|
|
android:id="@+id/cookies"
|
|
|
|
style="@style/Widget.AppCompat.Button.ButtonBar.AlertDialog"
|
|
|
|
android:layout_width="0dp"
|
2020-12-07 10:47:03 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/get_cookies" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
|
|
android:id="@+id/refresh"
|
|
|
|
style="@style/Widget.AppCompat.Button.ButtonBar.AlertDialog"
|
|
|
|
android:layout_width="0dp"
|
2020-12-07 10:47:03 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/refresh" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatCheckBox
|
|
|
|
android:id="@+id/desktop_mode"
|
2020-12-07 10:47:03 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/desktop_2fa" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
</LinearLayout>
|