initialize: function () {
this.template = $.tpl['profile-form'];
this.model.fetch({
data: $.param({email: localStorage.getItem('user_email')}),
type: 'POST',
}).done(this.render);
},
render: function (eventName) {
this.$el.html(this.template(this.model.toJSON()));
return this;
}