@(account: Option[model.Account])(implicit context: app.Context) @import context._ @import view.helpers._ @html.main((if(account.isDefined) "Edit your profile" else "Create your account")){ @if(account.isDefined){

Edit your profile

} else {

Create your account

}
@if(account.isEmpty){
}
@if(account.nonEmpty && account.get.image.nonEmpty){ } else {
No Image
}
@if(account.nonEmpty && account.get.image.nonEmpty){ }
@if(account.isDefined){ Cancel } else { }
}