diff --git a/ui/account.html b/ui/account.html
new file mode 100644
index 0000000..5d50e6e
--- /dev/null
+++ b/ui/account.html
@@ -0,0 +1,8 @@
+{{define "body"}}
+
+
Username: {{.Account.Username}}
+
First name: {{.Account.Firstname}}
+
Last name: {{.Account.Lastname}}
+
Color: {{.Account.Color}}
+
+{{end}}
diff --git a/ui/base.html b/ui/base.html
new file mode 100644
index 0000000..50af8a3
--- /dev/null
+++ b/ui/base.html
@@ -0,0 +1,40 @@
+
+
+
+
+ Alfheim
+
+
+
+
+
+
+
+
+
+
+
+
+ {{template "body" .}}
+
+
+
+
+
diff --git a/ui/index.html b/ui/index.html
new file mode 100644
index 0000000..7d6e6f5
--- /dev/null
+++ b/ui/index.html
@@ -0,0 +1,3 @@
+{{define "body"}}
+This is a great game coming soon.
+{{end}}
diff --git a/ui/login.html b/ui/login.html
new file mode 100644
index 0000000..8d3c3fe
--- /dev/null
+++ b/ui/login.html
@@ -0,0 +1,35 @@
+{{define "body"}}
+
+{{end}}
diff --git a/ui/logout.html b/ui/logout.html
new file mode 100644
index 0000000..690d0bc
--- /dev/null
+++ b/ui/logout.html
@@ -0,0 +1,11 @@
+{{define "body"}}
+
+{{end}}
diff --git a/ui/register.html b/ui/register.html
new file mode 100644
index 0000000..089e96d
--- /dev/null
+++ b/ui/register.html
@@ -0,0 +1,45 @@
+{{define "body"}}
+
+{{end}}