142 lines
3.3 KiB
XML
142 lines
3.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ui version="4.0">
|
|
<class>MainWindow</class>
|
|
<widget class="QMainWindow" name="MainWindow">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>292</width>
|
|
<height>200</height>
|
|
</rect>
|
|
</property>
|
|
<property name="sizePolicy">
|
|
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
<horstretch>0</horstretch>
|
|
<verstretch>0</verstretch>
|
|
</sizepolicy>
|
|
</property>
|
|
<property name="minimumSize">
|
|
<size>
|
|
<width>292</width>
|
|
<height>200</height>
|
|
</size>
|
|
</property>
|
|
<property name="maximumSize">
|
|
<size>
|
|
<width>292</width>
|
|
<height>200</height>
|
|
</size>
|
|
</property>
|
|
<property name="focusPolicy">
|
|
<enum>Qt::NoFocus</enum>
|
|
</property>
|
|
<property name="contextMenuPolicy">
|
|
<enum>Qt::NoContextMenu</enum>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>Log in</string>
|
|
</property>
|
|
<property name="windowOpacity">
|
|
<double>0.980000000000000</double>
|
|
</property>
|
|
<property name="styleSheet">
|
|
<string notr="true">QWidget{
|
|
background-color: rgb(30, 30, 30);
|
|
}
|
|
</string>
|
|
</property>
|
|
<property name="dockOptions">
|
|
<set>QMainWindow::AllowTabbedDocks|QMainWindow::AnimatedDocks</set>
|
|
</property>
|
|
<widget class="QWidget" name="centralwidget">
|
|
<widget class="QPushButton" name="login_button">
|
|
<property name="enabled">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>70</x>
|
|
<y>140</y>
|
|
<width>151</width>
|
|
<height>50</height>
|
|
</rect>
|
|
</property>
|
|
<property name="minimumSize">
|
|
<size>
|
|
<width>0</width>
|
|
<height>50</height>
|
|
</size>
|
|
</property>
|
|
<property name="styleSheet">
|
|
<string notr="true">QPushButton {
|
|
color: rgb(204, 204, 204);
|
|
border-width: 1px;
|
|
border-radius:6px;
|
|
border-style: solid;
|
|
background-color: rgb(28, 30, 33);
|
|
border-color: rgb(66, 143, 225);
|
|
}
|
|
QPushButton:hover{
|
|
border-width: 2px;
|
|
}
|
|
QPushButton:pressed{
|
|
background-color: rgb(50, 60, 63);
|
|
}
|
|
QPushButton:disabled{
|
|
border-width: 0px;
|
|
background-color: rgb(92, 99, 109);
|
|
}</string>
|
|
</property>
|
|
<property name="text">
|
|
<string>Log in</string>
|
|
</property>
|
|
</widget>
|
|
<widget class="QLineEdit" name="email_box">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>20</x>
|
|
<y>20</y>
|
|
<width>251</width>
|
|
<height>51</height>
|
|
</rect>
|
|
</property>
|
|
<property name="styleSheet">
|
|
<string notr="true">background-color: rgb(74, 76, 83);
|
|
border-radius: 5px;
|
|
color: rgb(242, 242, 242);</string>
|
|
</property>
|
|
<property name="placeholderText">
|
|
<string>email</string>
|
|
</property>
|
|
</widget>
|
|
<widget class="QLineEdit" name="password_box">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>20</x>
|
|
<y>80</y>
|
|
<width>251</width>
|
|
<height>51</height>
|
|
</rect>
|
|
</property>
|
|
<property name="styleSheet">
|
|
<string notr="true">background-color: rgb(74, 76, 83);
|
|
border-radius: 5px;
|
|
color: rgb(242, 242, 242);</string>
|
|
</property>
|
|
<property name="inputMask">
|
|
<string/>
|
|
</property>
|
|
<property name="echoMode">
|
|
<enum>QLineEdit::PasswordEchoOnEdit</enum>
|
|
</property>
|
|
<property name="placeholderText">
|
|
<string>Password</string>
|
|
</property>
|
|
</widget>
|
|
</widget>
|
|
</widget>
|
|
<resources/>
|
|
<connections/>
|
|
</ui>
|