blob: 6d8c9879108c3ef527bd8907f17b29634a9adac0 [file] [log] [blame]
Adrien Béraud04d822c2015-04-02 17:44:36 -04001<?xml version="1.0" encoding="utf-8"?>
2<!--
Adrien Béraudec528bb2016-01-14 16:52:51 -05003Copyright (C) 2004-2016 Savoir-faire Linux Inc.
Adrien Béraud04d822c2015-04-02 17:44:36 -04004
5Author: Alexandre Lision <alexandre.lision@gmail.com>
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 3 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Adrien Béraud04d822c2015-04-02 17:44:36 -040020-->
21<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
22 android:layout_width="wrap_content"
23 android:layout_height="match_parent"
24 android:baselineAligned="false"
25 android:orientation="vertical" >
26
27 <EditText
28 android:id="@+id/credentials_username"
29 android:layout_width="match_parent"
30 android:layout_height="wrap_content"
Adrien Béraudf3c6af42015-11-23 16:42:33 -050031 android:hint="@string/account_username_label"
Adrien Béraud04d822c2015-04-02 17:44:36 -040032 android:imeOptions="actionNext"
Adrien Béraudf3c6af42015-11-23 16:42:33 -050033 android:inputType="textNoSuggestions" >
Adrien Béraud04d822c2015-04-02 17:44:36 -040034 <requestFocus />
35 </EditText>
36
Adrien Béraudf3c6af42015-11-23 16:42:33 -050037 <EditText
Adrien Béraud04d822c2015-04-02 17:44:36 -040038 android:id="@+id/credentials_password"
39 android:layout_width="match_parent"
40 android:layout_height="wrap_content"
Adrien Béraudf3c6af42015-11-23 16:42:33 -050041 android:hint="@string/account_password_label"
42 android:imeOptions="actionNext"
43 android:inputType="textPassword" />
Adrien Béraud04d822c2015-04-02 17:44:36 -040044
45 <EditText
46 android:id="@+id/credentials_realm"
47 android:layout_width="match_parent"
48 android:layout_height="wrap_content"
Adrien Béraudf3c6af42015-11-23 16:42:33 -050049 android:hint="Realm..."
Adrien Béraud04d822c2015-04-02 17:44:36 -040050 android:imeOptions="actionGo"
Adrien Béraudf3c6af42015-11-23 16:42:33 -050051 android:inputType="textNoSuggestions" />
Adrien Béraud04d822c2015-04-02 17:44:36 -040052
53</LinearLayout>