We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83b7180 commit c740058Copy full SHA for c740058
1 file changed
apps/plumeimpactor/src/screen/windows/login_window.rs
@@ -179,12 +179,12 @@ impl LoginWindow {
179
}
180
181
fn view_login(&self) -> Element<'_, Message> {
182
- let email_input = text_input("example@riseup.net", &self.email)
+ let email_input = text_input("claration@riseup.net", &self.email)
183
.on_input(Message::EmailChanged)
184
.padding(8)
185
.width(Fill);
186
187
- let mut password_input = text_input("1234", &self.password)
+ let mut password_input = text_input("password", &self.password)
188
.on_input(Message::PasswordChanged)
189
.secure(true)
190
0 commit comments