package com.example.currpot.myapplication;
import android.app.Fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class RegisterFragment2 extends Fragment {    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
        View registerfragment2 = inflater.inflate(R.layout.registerfragment2, null);
        return super.onCreateView(inflater, container, savedInstanceState);
    }
}