@(user: User) @main(Html("Account created!"), nav = "wizard") {
@user.username
@user.email
@user.password
@user.profile.country
@if(user.profile.address == null || user.profile.address == "") { Not specified } else { @user.profile.address }
@if(user.profile.age == null) { Not specified } else { @user.profile.age }
}