You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.3 KiB

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:layout_margin="64dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardCornerRadius="8dp"
card_view:cardElevation="8dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="24dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Hyperlink Server Information"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Server Address"
android:textSize="22sp" />
<EditText
android:id="@+id/activity_login_token_form_serverEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="https://hyperlink.url/"
android:inputType="text" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Token"
android:textSize="22sp" />
<EditText
android:id="@+id/activity_login_token_form_tokenEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword" />
<Button
android:id="@+id/activity_login_token_form_loginButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onContinueClick"
android:text="Continue" />
</LinearLayout>
</androidx.cardview.widget.CardView>
</LinearLayout>