<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    android:layout_height="match_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:background="@color/white">

    <WebView xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/termsWeb"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="44dp"
        android:layout_width="fill_parent"
        android:orientation="vertical"
        android:layout_height="fill_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        tools:context=".Agents.ViewContract"
        tools:showIn="@layout/activity_terms_of_use">
    </WebView>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="3"
        android:layout_alignParentBottom="true"
        android:orientation="horizontal">

        <Button
            android:id="@+id/btnBack"
            android:layout_width="3dip"
            android:layout_height="40dp"
            android:layout_marginRight="1dp"
            android:layout_marginLeft ="1dp"
            android:layout_weight="0.94"
            android:text="Decline"
            android:textColor="@color/white"
            android:paddingRight="0.5dp"
            android:background="@drawable/customborder"
            />
        <Button
            android:id="@+id/btnNext"
            android:layout_width="3dip"
            android:layout_height="40dp"
            android:layout_marginRight="1dp"
            android:layout_marginLeft ="1dp"
            android:layout_weight="0.94"
            android:background="@drawable/customborder"
            android:paddingLeft="1dp"
            android:text="Accept"
            android:textColor="@color/white"
            />
        />

    </LinearLayout>

</RelativeLayout>