2016-01-15 00:07:56 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<!--
|
|
|
|
|
~ Copyright © 2013 – 2016 Ricki Hirner (bitfire web engineering).
|
|
|
|
|
~ All rights reserved. This program and the accompanying materials
|
|
|
|
|
~ are made available under the terms of the GNU Public License v3.0
|
|
|
|
|
~ which accompanies this distribution, and is available at
|
|
|
|
|
~ http://www.gnu.org/licenses/gpl.html
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-03-24 16:43:35 +00:00
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-01-15 00:07:56 +00:00
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<ScrollView android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
2016-01-15 23:53:05 +00:00
|
|
|
|
android:layout_weight="1"
|
2016-03-18 14:40:05 +00:00
|
|
|
|
android:layout_margin="@dimen/activity_margin">
|
2017-01-02 19:39:10 +00:00
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/login_type_url_details"
|
2016-01-15 00:07:56 +00:00
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-01-02 19:39:10 +00:00
|
|
|
|
android:orientation="vertical">
|
2016-01-15 00:07:56 +00:00
|
|
|
|
|
2017-01-02 19:39:10 +00:00
|
|
|
|
<TextView
|
2016-01-15 00:07:56 +00:00
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-01-02 19:39:10 +00:00
|
|
|
|
style="@style/login_type_headline"
|
|
|
|
|
android:text="@string/login_enter_service_details"
|
|
|
|
|
android:layout_marginBottom="14dp"/>
|
2016-01-15 00:07:56 +00:00
|
|
|
|
|
2017-01-02 19:39:10 +00:00
|
|
|
|
<TextView
|
2016-01-15 00:07:56 +00:00
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-01-02 19:39:10 +00:00
|
|
|
|
android:text="@string/login_service_details_description"
|
|
|
|
|
android:layout_marginBottom="14dp"/>
|
2016-01-15 00:07:56 +00:00
|
|
|
|
|
2017-01-02 19:39:10 +00:00
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/user_name"
|
2016-01-15 00:07:56 +00:00
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-03-02 11:22:03 +00:00
|
|
|
|
android:hint="@string/login_email_address"
|
2017-01-02 19:39:10 +00:00
|
|
|
|
android:inputType="textEmailAddress"/>
|
2017-02-27 12:57:57 +00:00
|
|
|
|
<com.etesync.syncadapter.ui.widget.EditPassword
|
2017-01-02 19:39:10 +00:00
|
|
|
|
android:id="@+id/url_password"
|
2016-01-15 00:07:56 +00:00
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-01-02 19:39:10 +00:00
|
|
|
|
android:hint="@string/login_password"/>
|
2016-01-15 00:07:56 +00:00
|
|
|
|
|
2017-01-02 19:39:10 +00:00
|
|
|
|
</LinearLayout>
|
2016-01-15 00:07:56 +00:00
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/stepper_nav_bar">
|
|
|
|
|
|
2017-01-02 19:39:10 +00:00
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/create_account"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:text="@string/login_signup"
|
|
|
|
|
style="@style/stepper_nav_button"/>
|
|
|
|
|
|
2016-01-15 23:53:05 +00:00
|
|
|
|
<Space
|
2016-01-15 00:07:56 +00:00
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
style="@style/stepper_nav_button"/>
|
|
|
|
|
|
|
|
|
|
<Button
|
2016-01-15 23:53:05 +00:00
|
|
|
|
android:id="@+id/login"
|
2016-01-15 00:07:56 +00:00
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
2016-01-17 16:10:30 +00:00
|
|
|
|
android:text="@string/login_login"
|
2016-01-15 00:07:56 +00:00
|
|
|
|
style="@style/stepper_nav_button"/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|