@(account: Option[model.Account], info: Option[Any])(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

} @helper.html.information(info)
@if(account.isEmpty){
}
@helper.html.uploadavatar(account)
@if(account.isDefined){ Cancel } else { }
}