<!--
Geekttrss is a RSS feed reader application on the Android Platform.
Copyright (C) 2017-2022 by Frederic-Charles Barthelery.
This file is part of Geekttrss.
Geekttrss is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Geekttrss is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Geekttrss. If not, see <http://www.gnu.org/licenses/>.
-->
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<import type="com.geekorum.ttrss.accounts.LoginViewModel" />
<variable name="viewModel" type="com.geekorum.ttrss.accounts.LoginViewModel" />
</data>
<LinearLayout android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
>
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="?appBarToolbarStyle" />
</com.google.android.material.appbar.AppBarLayout>
<include android:id="@+id/form"
layout="@layout/include_form_login"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/activity_horizontal_margin"
app:viewModel="@{viewModel}" />
</LinearLayout>
</layout>