Skip to content

Instantly share code, notes, and snippets.

MyApp.MainPage.MainPain: SC.MainPane.create({
testView: SC.View.extend( {
render: function(ctx) {
ctx.push('<form id="login-test" action="http://www.logx.ch" method="POST">');
ctx.push('<input name="username" type="text" id="login-name" />');
ctx.push('<input name="password" type="password" id="login-passwd" />');
ctx.push('<input type="submit" />');
ctx.push('</form>');
}