- Removed old SQLite user schema and replaced it with a new structure that includes password handling and cookie management. - Updated user.go to implement password encryption and user creation logic. - Modified web templates to reflect the new server management system, including the removal of outdated templates and the addition of new server creation and listing functionalities. - Introduced error handling templates for better user feedback on bad requests and server errors. - Added a makefile for easier database setup and management with Docker. Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
16 lines
528 B
Cheetah
16 lines
528 B
Cheetah
<!DOCTYPE html>
|
|
<html lang="{{if .Lang}}{{.Lang}}{{else}}en{{end}}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{if .Title}}{{.Title}} - {{end}}Bds Dashboard</title>
|
|
<!-- <script src="/js/index.js"></script> -->
|
|
<link rel="stylesheet" href="/css/global.css">
|
|
<link rel="stylesheet" href="/css/navbar.css">
|
|
<link rel="stylesheet" href="/css/login.css">
|
|
</head>
|
|
<body>
|
|
{{if not .PageIsInstall}}
|
|
{{template "base/head_navbar.tmpl" .}}
|
|
{{end}}
|