comunicwatcher/loginwindow.ui

175 lines
4.0 KiB
Plaintext
Raw Normal View History

2020-06-12 12:22:37 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>LoginWindow</class>
<widget class="QWidget" name="LoginWindow">
2020-06-12 13:15:06 +00:00
<property name="windowModality">
<enum>Qt::ApplicationModal</enum>
</property>
2020-06-12 12:22:37 +00:00
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
2020-06-12 13:19:50 +00:00
<width>330</width>
<height>501</height>
2020-06-12 12:22:37 +00:00
</rect>
</property>
<property name="windowTitle">
<string>LoginWindow</string>
</property>
2020-06-12 12:36:06 +00:00
<property name="windowIcon">
<iconset resource="ressources.qrc">
<normaloff>:/logo_large.png</normaloff>:/logo_large.png</iconset>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
2020-06-12 13:15:06 +00:00
<property name="styleSheet">
2020-06-12 13:34:40 +00:00
<string notr="true">* {
background-color: #3c8dbc;
color: white;
}
QLineEdit {
margin-bottom: 15px;
border: 1px solid grey;
border-radius: 0px;
background-color: white;
2020-06-12 13:58:23 +00:00
color: black;
2020-06-12 13:34:40 +00:00
}
QPushButton {
background-color: rgb(28, 82, 187);
border: 1px solid grey;
padding: 2px 15px 2px 15px;
}
QPushButton:hover {
background-color: rgb(28, 82, 110);
}
QPushButton:pressed {
background-color: rgb(50, 50, 255);
}</string>
2020-06-12 13:15:06 +00:00
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="label">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">padding-left: 2px;
</string>
</property>
<property name="text">
<string>Login to Comunic</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QToolButton" name="closeButton">
<property name="styleSheet">
<string notr="true">QToolButton {
background-color: transparent;
border: 0px;
padding: 2px;
}
QToolButton:hover:!pressed {
background-color: rgba(255, 255, 255, 158)
}</string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="icon">
<iconset resource="ressources.qrc">
<normaloff>:/ic_close.png</normaloff>:/ic_close.png</iconset>
</property>
</widget>
</item>
</layout>
</item>
2020-06-12 13:34:40 +00:00
<item>
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>Email address</string>
</property>
</widget>
</item>
<item>
2020-06-12 13:58:23 +00:00
<widget class="QLineEdit" name="emailEdit"/>
2020-06-12 13:34:40 +00:00
</item>
<item>
<widget class="QLabel" name="label_3">
<property name="text">
<string>Password</string>
</property>
</widget>
</item>
<item>
2020-06-12 13:58:23 +00:00
<widget class="QLineEdit" name="passwordEdit">
<property name="echoMode">
<enum>QLineEdit::Password</enum>
</property>
</widget>
2020-06-12 13:34:40 +00:00
</item>
<item alignment="Qt::AlignHCenter">
2020-06-12 13:58:23 +00:00
<widget class="QPushButton" name="submitButton">
2020-06-12 13:34:40 +00:00
<property name="text">
<string>Login</string>
</property>
</widget>
</item>
2020-06-12 13:15:06 +00:00
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
2020-06-12 12:22:37 +00:00
</widget>
2020-06-12 12:36:06 +00:00
<resources>
<include location="ressources.qrc"/>
</resources>
2020-06-12 12:22:37 +00:00
<connections/>
</ui>