feature/login_register_ui #154

Merged
Fujimatsu merged 10 commits from feature/login_register_ui into main 2024-07-08 16:34:59 +00:00
Showing only changes of commit 6d3e53ec72 - Show all commits

View File

@ -90,5 +90,9 @@ public class LoginActivity extends AppCompatActivity {
findViewById(R.id.toRegisterButton).setOnClickListener(v -> { findViewById(R.id.toRegisterButton).setOnClickListener(v -> {
startActivity(new Intent(this, RegisterActivity.class)); startActivity(new Intent(this, RegisterActivity.class));
}); });
findViewById(R.id.toChildLoginButton).setOnClickListener(v -> {
startActivity(new Intent(this, ChildLoginActivity.class));
});
} }
} }