Hello,
yes this is possible. You can add a redirect statement to the login form of your template (index.php).
Search for <form name="login"...> in the index.php of your template and change it as follows:
<form name="login" id="login" action="<?php echo LOGIN_URL; ?>?redirect=<?php echo WB_URL; ?>/pages/YOUR_PAGE.php" method="post">
Replace YOUR_PAGE with the page name you want to display after login.
Regards Christian