fix: update starting balance and welcome bonus text #178

Merged
jleibl merged 2 commits from task/CAS-68/AdjustStartMoney into main 2025-05-14 07:00:25 +00:00
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ public class UserService {
createUserDto.getEmail(), createUserDto.getEmail(),
createUserDto.getUsername(), createUserDto.getUsername(),
passwordEncoder.encode(createUserDto.getPassword()), passwordEncoder.encode(createUserDto.getPassword()),
BigDecimal.valueOf(10) // Starting balance BigDecimal.valueOf(100) // Starting balance
); );
return userRepository.save(user); return userRepository.save(user);

View file

@ -7,8 +7,8 @@
<h1 class="text-3xl sm:text-4xl lg:text-5xl section-heading mb-2 sm:mb-3"> <h1 class="text-3xl sm:text-4xl lg:text-5xl section-heading mb-2 sm:mb-3">
Willkommensbonus Willkommensbonus
</h1> </h1>
<div class="welcome-bonus">200% bis zu 500€</div> <div class="welcome-bonus">von bis zu €100</div>
<p class="bonus-description">+ 200 Freispiele</p> <p class="bonus-description">Fangen Sie an, zu gewinnen!</p>
<div class="flex justify-center space-x-4 mt-6"> <div class="flex justify-center space-x-4 mt-6">
@if (authService.isLoggedIn()) { @if (authService.isLoggedIn()) {