diff --git a/atst/app.py b/atst/app.py
index 6b2a8cc4..17253d4a 100644
--- a/atst/app.py
+++ b/atst/app.py
@@ -8,8 +8,9 @@ def make_app(**kwargs):
app = tornado.web.Application([
url( r"/", MainHandler, {'page': 'login'}, name='login' ),
url( r"/home", MainHandler, {'page': 'home'}, name='home' ),
- url( r"/requests", Request, {'page': 'requests'}, name='requests' ),
url( r"/accounts", MainHandler, {'page': 'accounts'}, name='accounts' ),
+ url( r"/requests", Request, {'page': 'requests'}, name='requests' ),
+ url( r"/requests/new", Request, {'page': 'requests_new'}, name='request_new' ),
url( r"/requests/([0-9])", Request, {'page': 'requests'}, name='request_form' ),
url( r"/users", MainHandler, {'page': 'users'}, name='users' ),
url( r"/reports", MainHandler, {'page': 'reports'}, name='reports' ),
diff --git a/scss/base/_typography.scss b/scss/base/_typography.scss
index 80f7501d..53184bac 100644
--- a/scss/base/_typography.scss
+++ b/scss/base/_typography.scss
@@ -1,3 +1,10 @@
h1, h2, h3, h4, h5, h6 {
font-family: $font-sans;
-}
+
+ .usa-button {
+ position: relative;
+ bottom: 0.5rem;
+ left: 1rem;
+ }
+
+}
\ No newline at end of file
diff --git a/templates/accounts.html.to b/templates/accounts.html.to
index 472481f4..d074dd5e 100644
--- a/templates/accounts.html.to
+++ b/templates/accounts.html.to
@@ -7,7 +7,6 @@
Accounts
-
Account Name |
diff --git a/templates/requests.html.to b/templates/requests.html.to
index a50da5a9..6455ef6b 100644
--- a/templates/requests.html.to
+++ b/templates/requests.html.to
@@ -4,7 +4,54 @@
- Requests
+
+
+
+
+
+ Order ID |
+ Request Date |
+ Requester |
+ Total Apps |
+ Status |
+ Actions |
+
+
+
+
+ #36552612 New |
+ 5/17/2018 |
+ Friedrich Straat |
+ 2 |
+ Pending |
+ Download |
+
+
+ #87362910 |
+ 10/2/2017 |
+ Pietro Quirinis |
+ 1 |
+ Complete |
+ Download |
+
+
+ #29938172 |
+ 1/7/2017 |
+ Marina Borsetti |
+ 1 |
+ Denied |
+ Download |
+
+
+
+
+
+
+
+ ‹ All requests
+ New Request
+
+
@@ -17,6 +64,7 @@
Save & Continue
{% end %}
+
{% end %}
diff --git a/templates/requests_new.html.to b/templates/requests_new.html.to
new file mode 100644
index 00000000..c614c4bc
--- /dev/null
+++ b/templates/requests_new.html.to
@@ -0,0 +1,11 @@
+{% extends "base.html.to" %}
+
+{% block content %}
+
+
+
+ New Request
+
+
+{% end %}
+