Merge pull request 'fix: update starting balance and welcome bonus text' (!178) from task/CAS-68/AdjustStartMoney into main
Reviewed-on: #178 Reviewed-by: Jan K9f <jan@kjan.email>
This commit is contained in:
commit
4f1e90efdf
2 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@ public class UserService {
|
|||
createUserDto.getEmail(),
|
||||
createUserDto.getUsername(),
|
||||
passwordEncoder.encode(createUserDto.getPassword()),
|
||||
BigDecimal.valueOf(10) // Starting balance
|
||||
BigDecimal.valueOf(100) // Starting balance
|
||||
);
|
||||
|
||||
return userRepository.save(user);
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
<h1 class="text-3xl sm:text-4xl lg:text-5xl section-heading mb-2 sm:mb-3">
|
||||
Willkommensbonus
|
||||
</h1>
|
||||
<div class="welcome-bonus">200% bis zu 500€</div>
|
||||
<p class="bonus-description">+ 200 Freispiele</p>
|
||||
<div class="welcome-bonus">von bis zu €100</div>
|
||||
<p class="bonus-description">Fangen Sie an, zu gewinnen!</p>
|
||||
|
||||
<div class="flex justify-center space-x-4 mt-6">
|
||||
@if (authService.isLoggedIn()) {
|
||||
|
|
Reference in a new issue