aboutsummaryrefslogtreecommitdiffhomepage
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/index.pug15
-rw-r--r--views/layout.pug3
2 files changed, 15 insertions, 3 deletions
diff --git a/views/index.pug b/views/index.pug
index 3d63b9a..acee1dd 100644
--- a/views/index.pug
+++ b/views/index.pug
@@ -1,5 +1,16 @@
extends layout
block content
- h1= title
- p Welcome to #{title}
+ header
+ i.nes-icon
+ h1 Texx
+ p Decentralized and encrypted communication
+ section.nes-container.with-title
+ h2.title Chat Window
+ .containers
+ form.form.nes-container.with-title
+ .field
+ label(for='incoming')
+ textarea#incoming.nes-textarea
+ button(type=submit).nes-btn.is-primary Submit
+ pre#outgoing.nes-container.with-title
diff --git a/views/layout.pug b/views/layout.pug
index 68a7399..3c6cd2a 100644
--- a/views/layout.pug
+++ b/views/layout.pug
@@ -2,6 +2,7 @@ doctype html
html
head
title= title
- link(rel='stylesheet', href='/styles/style.css')
+ script(src='/app.js')
+ link(rel='stylesheet', href='/app.css')
body
block content