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