// Page
$.ui.page.subclass('ui.reactivate_page', {
	_init: function() {
		this.createForm();
	}, 
	createForm: function() {
		this.form = this.getBodyObject('#user_reactivate_form').form();
	}
});
/********* Init *********/
$(document).ready(function() {
	$('.page').reactivate_page();
});