Skip to content
Snippets Groups Projects
Commit 578a3de2 authored by Taras's avatar Taras
Browse files

Add forgot password button

parent e52628a4
No related branches found
No related tags found
No related merge requests found
......@@ -127,6 +127,13 @@ class LogInFragment : Fragment(R.layout.fragment_log_in), HasLoadingState {
startLoading(btnLogin)
viewModel.startLogInFlow(userName, getDomain())
}
btnForgotPassword.setOnClickListener {
val userName = binding.tilUserName.getText()
if (userName.isEmpty()) {
showError(getString(R.string.username_can_not_be_empty))
return@setOnClickListener
}
}
}
}
......
......@@ -142,6 +142,19 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tilUserName" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btnForgotPassword"
style="@style/Widget.Material3.Button.TextButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="@string/forgot_password"
android:textColor="@color/blue"
android:textSize="17sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/btnLogin" />
<TextView
android:id="@+id/tvResumeSession"
......@@ -155,7 +168,7 @@
app:layout_constraintBottom_toTopOf="@id/rvSwitchUsers"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btnLogin"
app:layout_constraintTop_toBottomOf="@+id/btnForgotPassword"
app:layout_constraintVertical_chainStyle="packed"
tools:visibility="visible" />
......
......@@ -176,6 +176,7 @@ Or, think about all of your friends across all of the places you\'ve ever lived.
<string name="username_not_found">Username not found</string>
<string name="invalid_validation_code">Invalid validation code</string>
<string name="invalid_password">Invalid password</string>
<string name="forgot_password">Forgot password?</string>
<plurals name="days">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment