IntelliJ Platform Kotlin DSL
1: val panel = panel {
2: noteRow("Login:")
3: row("Username:") { userField() }
4: row("Password:") { passwordField() }
5: row {
6: rememberCheckBox()
7: right {
8: link("Forgot?") { browse(forgot) }
9: }
10: }
11: noteRow("No account? $signupLink")
12: }