38 lines
501 B
QML
38 lines
501 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
CheckBox
|
|
{
|
|
Layout.columnSpan: 2
|
|
text: qsTr("Arbeitserlaubnis")
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("Staatsangehörigkeit")
|
|
}
|
|
TextField
|
|
{
|
|
id: nationality
|
|
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("Pass gültig bis")
|
|
}
|
|
TextField
|
|
{
|
|
id: pass
|
|
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("Aufenthaltstitel gültig bis")
|
|
}
|
|
TextField
|
|
{
|
|
id: aufenthalt
|
|
|
|
}
|
|
|