mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-02-15 15:30:47 +01:00
15 lines
354 B
C++
15 lines
354 B
C++
|
#include <QFormLayout>
|
||
|
#include "authenticationwidget.h"
|
||
|
|
||
|
AuthenticationWidget::AuthenticationWidget(QWidget *parent) : QWidget(parent)
|
||
|
{
|
||
|
_username = new QLineEdit();
|
||
|
_password = new QLineEdit();
|
||
|
|
||
|
QFormLayout *layout = new QFormLayout();
|
||
|
layout->addRow(tr("Username:"), _username);
|
||
|
layout->addRow(tr("Password:"), _password);
|
||
|
|
||
|
setLayout(layout);
|
||
|
}
|