action_signin.go 223 B

123456789101112
  1. package actions
  2. import (
  3. "fmt"
  4. )
  5. func (this *Action) Action_signin() {
  6. action := this.wrapper.R.FormValue("action")
  7. this.write(fmt.Sprintf(`
  8. ModalShowMsg('Login Action', 'Hello from web server (%s)');
  9. `, action))
  10. }