Form Authentication in Ktor
问题 I'm new to Kotlin and Ktor trying to see the authentication part, so I got the below code. Routes "/" and "/bye" are working fine, but route "login" given blank page! package blog import kotlinx.html.* import kotlinx.html.stream.* // for createHTML import org.jetbrains.ktor.application.* import org.jetbrains.ktor.auth.* import org.jetbrains.ktor.features.* import org.jetbrains.ktor.http.* import org.jetbrains.ktor.response.* import org.jetbrains.ktor.routing.* import org.jetbrains.ktor