DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: 3c1030aaeb6a4c3f4035c202e87ae85076e992a0 tixe/handlers/login.go -rw-r--r-- 323 bytes
3c1030aaJonni Liljamo feat: create user in db on login 1 year, 29 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package handlers

import (
	"net/http"
	"tixe/config"
	"tixe/template"

	"github.com/gin-gonic/gin"
)

func Login(c *gin.Context) {
	html := template.TmplEngine.Render("login.tmpl", map[string]interface{}{"notauthed": true, "oidcloginvisual": config.TixeConfig.OidcLoginVisual})
	c.Data(http.StatusOK, "text/html", html)
}