@(user: User) @main(Html("Account created!"), nav = "signup") {

Your account:

Username

@user.username

Email

@user.email

Password

@user.password

Additional informations:

Country

@user.profile.country

Address

@if(user.profile.address == null || user.profile.address == "") { Not specified } else { @user.profile.address }

Age

@if(user.profile.age == null) { Not specified } else { @user.profile.age }

}