function insertForm()

in Radii8Designer/src/js/StoreLogin.js [30:45]


function insertForm(id) {
	var form 		= document.createElement('form');
	var textinput 	= document.createElement('input');
	var password 	= document.createElement('input');

	form.id 		= id;
	textinput.id 	= "username";
	password.id 	= "password";
	password.type 	= "password";

	form.appendChild(textinput);
	form.appendChild(password);
	DocumentManager.add(form);

	return true;
}