Add dashboard

This commit is contained in:
2016-12-20 20:05:15 +01:00
parent 135b1b8e8d
commit ca1c2ed778
2 changed files with 31 additions and 0 deletions

20
templates/dashboard.html Normal file
View File

@@ -0,0 +1,20 @@
{{define "dashboard"}}
<!DOCTYPE html>
<html>
<head>
<title>Registration</title>
{{template "head"}}
</head>
<body>
<div class="container" id="head">
Budgeteer - {{.GetName}}
</div>
<div class="container col-lg-12" id="content">
<ul>Budgets
<li>Test</li>
</ul>
</div>
</body>
</html>
{{end}}