DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: 05027d8ce62ddac5df13b8e80686ccf3a7040108 tixe/handlers/login.go -rw-r--r-- 504 bytes
05027d8cJonni Liljamo docs: relicense to AGPL 3.0, update name to lowercase 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * This file is licensed under AGPL-3.0-or-later, see NOTICE and LICENSE for
 * more information.
 */
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{}{"title": "login","notauthed": true, "oidcloginvisual": config.TixeConfig.OidcLoginVisual})
	c.Data(http.StatusOK, "text/html", html)
}