<?xml version="1.0" encoding="utf-8"?>

<!-- Eingabe Vorname, Nachname und Passwort zu einem neuen Kunden -->

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
  <TableRow
     android:layout_width="wrap_content"
     android:layout_height="wrap_content">
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Vorname"/>
    <EditText
      android:id="@+id/EditText401"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"/>
   </TableRow>

  <TableRow
     android:layout_width="wrap_content"
     android:layout_height="wrap_content">
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Nachname"/>
    <EditText
      android:id="@+id/EditText402"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"/>
   </TableRow>

  <TableRow
     android:layout_width="wrap_content"
     android:layout_height="wrap_content">
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Passwort"/>
    <EditText
      android:id="@+id/EditText403"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:password="true" />
   </TableRow>

  <TableRow
     android:layout_width="wrap_content"
     android:layout_height="wrap_content">

    <Button 
    android:id="@+id/Button401"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Kunde speichern"/>

    <Button 
    android:id="@+id/Button402"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Zurueck"/>

  </TableRow>
     
</TableLayout>
