diff --git a/public/templates/account_settings.tpl b/public/templates/account_settings.tpl
deleted file mode 100644
index d29898b8e4..0000000000
--- a/public/templates/account_settings.tpl
+++ /dev/null
@@ -1,18 +0,0 @@
-
Account Settings
-
-
-
-
- If you see this, you are logged in.
-
-
-
\ No newline at end of file
diff --git a/src/webserver.js b/src/webserver.js
index e2ac44dd95..d1fd88eaed 100644
--- a/src/webserver.js
+++ b/src/webserver.js
@@ -124,11 +124,6 @@ var express = require('express'),
res.send(templates['header'] + templates['register'] + templates['footer']);
});
- app.get('/account', function(req, res) {
- refreshTemplates();
- res.send(templates['header'] + templates['account_settings'] + templates['footer']);
- });
-
app.get('/403', function(req, res) {
res.send(templates['header'] + templates['403'] + templates['footer']);
});