diff --git a/browserid/static/developers.html b/browserid/static/developers.html
deleted file mode 100644
index f3569d18d127fb1793ec731de781fa177ca148c1..0000000000000000000000000000000000000000
--- a/browserid/static/developers.html
+++ /dev/null
@@ -1,139 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta http-equiv="Content-type" content="text/html; charset=utf-8">
-  <title>BrowserID for Developers</title>
-  <link rel="stylesheet" href="css/style.css"  type="text/css">
-  <link rel="stylesheet" href="css/github.css">
-  <script src="js/highlight.js"></script>
-  <script>hljs.initHighlightingOnLoad();</script>
-</head>
-<body>
-<div id="splash">
-  <div class="header">
-    <div class="manage"><a id="manageLink" href="manage.html">manage my logins</a></div>
-  </div>
-  <div class="topquarter">
-    <div>
-      <a href="/"><div class="title"><img src="i/browserid_logo_lil.png"></div></a>
-      <div class="subtitle">for Developers</div>
-    </div>
-  </div>
-  <div class="bottomhalf">
-    <div class="why">
-      <p>
-        BrowserID provides a <b>simple</b> and <b>sophisticated</b>
-        login process that your <b>users will love</b>.  It can be
-        integrated in three easy steps:
-      </p>
-    </div>
-    <div class="step">
-      <div class="number">1.</div>
-      <p><b>Enable BrowserID:</b> Include the BrowserID JavaScript library in your site by adding a script tag to your <tt>&lt;head&gt;</tt></p>
-
-      <pre><code>&lt;script src="https://browserid.org/include.js" type="text/javascript"&gt;&lt;/script&gt;</code></pre>
-    </div>
-    <div class="step">
-      <div class="number">2.</div>
-      <p>
-        <b>Identify the User:</b> Instead of displaying a form on your
-        site which takes a username and password, use the BrowserID
-        JavaScript API when the user clicks your login button:
-      </p>
-<pre><code class="javascript">navigator.id.getVerifiedEmail(function(assertion) {
-    if (assertion) {
-        // This code will be invoked once the user has successfully
-        // selected an email address they control to log in with.
-    } else {
-        // something went wrong!  the user isn't logged in.
-    }
-});
-</code></pre>
-      <p>
-        Upon a successful login, you'll be called back with
-        an <i>assertion</i>, a string containing a signed claim that proves
-        the user is who they say they are.
-      </p>
-      <p>
-        <b>NOTE:</b> While completely optional, you might consider
-        replacing your login/signin button with a pretty BrowserID button:
-        
-        <div class="buttonbox">
-          <div><img src="i/sign_in_red.png"></div>
-          <div><img src="i/sign_in_blue.png"></div>
-          <div><img src="i/sign_in_orange.png"></div>
-          <div><img src="i/sign_in_green.png"></div>
-          <div><img src="i/sign_in_grey.png"></div>
-        </div>
-      </p>
-    </div>
-    <div class="step">
-      <div class="number">3.</div>
-      <p>
-        <b>Verify the User's Identity:</b> You must verify the <i>assertion</i>
-        is authentic, and extract the user's email address from it.
-        The easiest way to do these is to use the
-        free verification service provided by BrowserID.
-      </p><p>
-        To use it, you send a request
-        to <tt>https://browserid.org/verify</tt> with two GET parameters:
-      </p>
-        <ol>
-          <li> <tt>assertion</tt>: The encoded assertion
-          <li> <tt>audience</tt>: The hostname and optional port of your site
-        </ol>
-      <p>
-        The verifier will check the the assertion was meant for your site and
-        is valid, here's an example:
-      </p>
-        <pre><code>$ curl "https://browserid.org/verify?assertion=&lt;ASSERTION&gt;&audience=mysite.com"
-{
-    "status": "okay",
-    "email": "lloyd@mozilla.com",
-    "audience": "mysite.com",
-    "valid-until": 1308859352261,
-    "issuer": "browserid.org:443"
-}
-</pre></code>
-      </p>
-      <p>
-        <b>NOTE:</b> You may choose to validate assertions on your own
-        server.  While a bit more complicated you can reduce your
-        dependencies on others.  Refer
-        to <a href="https://wiki.mozilla.org/Identity/Verified_Email_Protocol">the
-        specification</a> and the <a href="https://github.com/mozilla/browserid/tree/master/verifier">source for the reference
-        validator</a>.
-      </p>
-    </div>
-    <div class="step">
-      <p><b>Complete the log in!</b>  Having completed the steps
-        above, you can trust that the present user really owns the
-        email address returned by the verifier.  You don't need to
-        perform any additional authentication unless you want to!
-        From here, you can perform whatever post-authentication steps
-        you like.
-      </p>
-    </div>
-    <div class="why">
-      <p>
-        You're done!  <b>Welcome to BrowserID!</b>  For more details, have a look at
-        our <a href="http://myfavoritebeer.org/">demonstration</a>, and view
-        <a href="https://github.com/lloyd/myfavoritebeer.org/">the code</a> behind it.
-      </p>
-    </div>
-  </div>
-  <div class="footer">
-    <div>
-      <div class="right">
-        <p><img src="i/browserid_logo_sm.png"> is an <b>open source experiment</b> into improving identity and authentication on the web, by
-          <a href="https://mozillalabs.com">mozilla labs</a>.</p>
-      </div>
-      <div class="left">
-        <p> <a href="https://github.com/mozilla/browserid">Source Code</a>&nbsp;&nbsp;&nbsp;<a href="https://wiki.mozilla.org/Identity/Verified_Email_Protocol">Specification</a>&nbsp;&nbsp;&nbsp;<a href="http://groups.google.com/group/mozilla-labs">Mailing list</a> </p>
-        <p class="copyright">Copyright © 2011 Mozilla.  All rights reserved. </p>
-      </div>
-    </div>
-  </div>
-</div>
-</body>
-</html>
diff --git a/browserid/static/index.html b/browserid/static/index.html
deleted file mode 100644
index 14d542b478eb38cacf6f9c34a63aa6963dbc3ae2..0000000000000000000000000000000000000000
--- a/browserid/static/index.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta http-equiv="Content-type" content="text/html; charset=utf-8">
-  <title>BrowserID: A better way to log in.</title>
-  <link rel="stylesheet" href="css/style.css"  type="text/css">
-</head>
-<body>
-<div id="splash">
-  <div class="header">
-    <div class="manage"><a id="manageLink" href="manage.html">manage my logins</a></div>
-  </div>
-  <div class="tophalf">
-    <div class="title"><img src="i/browserid_logo.png"></div>
-    <div class="subtitle">A better way to log in.</div>
-  </div>
-  <div class="bottomhalf">
-    <div class="why">
-      <img style="float: right;" src="i/people.png">
-      <p>For <b>users</b>, BrowserID provides a <b>safer and easier</b> way to log in.  <a href="users.html">How it works.</a></p>
-    </div>
-    <div class="why">
-      <img style="float: left;" src="i/developers.png">
-      <p>For <b>developers</b>, BrowserID offers a world class login experience with only a couple lines of code. <a href="developers.html">Get Started.</a></p>
-    </div>
-    <div class="why">
-      <img style="float: right;" src="i/id.png">
-      <p>For <b>identity providers</b>, BrowserID lets your give your users an identity they can <b>use everywhere</b>. <a href="primaries.html">Dig Deeper.</a> </p>
-    </div>
-  </div>
-  <div class="footer">
-    <div>
-      <div class="right">
-        <p><img src="i/browserid_logo_sm.png"> is an <b>open source experiment</b> into improving identity and authentication on the web, by
-          <a href="https://mozillalabs.com">mozilla labs</a>.</p>
-      </div>
-      <div class="left">
-        <p> <a href="https://github.com/mozilla/browserid">Source Code</a>&nbsp;&nbsp;&nbsp;<a href="https://wiki.mozilla.org/Identity/Verified_Email_Protocol">Specification</a>&nbsp;&nbsp;&nbsp;<a href="https://groups.google.com/forum/?hl=en#!forum/mozilla.dev.identity">Mailing list</a>&nbsp;&nbsp;&nbsp;<a href="/privacy">Privacy</a> </p>
-        <p class="copyright">Copyright © 2011 Mozilla.  All rights reserved. </p>
-      </div>
-    </div>
-  </div>
-</div>
-</body>
-</html>
diff --git a/browserid/static/manage.html b/browserid/static/manage.html
deleted file mode 100644
index 5081533787a3bdb4ca9c831b7ea6c16c25265f5f..0000000000000000000000000000000000000000
--- a/browserid/static/manage.html
+++ /dev/null
@@ -1,112 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta http-equiv="Content-type" content="text/html; charset=utf-8">
-  <title>BrowserID - My Account</title>
-  <link rel="stylesheet" href="css/style.css"  type="text/css">
-</head>
-<body onload="display_saved_ids()">
-<div id="splash">
-  <div class="topquarter">
-    <div>
-      <a href="/"><div class="title"><img src="i/browserid_logo_lil.png"></div></a>
-      <div class="subtitle">My Account</div>
-    </div>
-  </div>
-  <div class="bottomhalf">
-    <div class="why">
-      <p>
-        Manage your email addresses in BrowserID.
-      </p>
-    </div>
-    <div id="emailList">
-    </div>
-    <div id="cancelaccount">
-      You may, at any time, <a href="#" id="cancellink">cancel your account</a>.
-    </div>
-  </div>
-  <div class="footer">
-    <div>
-      <div class="right">
-        <p><img src="i/browserid_logo_sm.png"> is an <b>open source experiment</b> into improving identity and authentication on the web, by
-          <a href="https://mozillalabs.com">mozilla labs</a>.</p>
-      </div>
-      <div class="left">
-        <p> <a href="https://github.com/mozilla/browserid">Source Code</a>&nbsp;&nbsp;&nbsp;<a href="https://wiki.mozilla.org/Identity/Verified_Email_Protocol">Specification</a>&nbsp;&nbsp;&nbsp;<a href="http://groups.google.com/group/mozilla-labs">Mailing list</a> </p>
-        <p class="copyright">Copyright © 2011 Mozilla.  All rights reserved. </p>
-      </div>
-    </div>
-  </div>
-</div>
-</body>
-<script src="dialog/jquery-min.js"></script>
-<script src="dialog/underscore-min.js"></script>
-<script>
-function display_saved_ids()
-{
-  var emails = {};
-  if (window.localStorage.emails) {
-    emails = JSON.parse(window.localStorage.emails);
-  }
-
-  $('#cancellink').click(function() {
-    if (confirm('Are you sure you want to cancel your account?')) {
-      $.post("/wsapi/account_cancel", {}, function(result) {
-        window.localStorage.emails = null;
-        document.location="/";
-      });
-    }
-  });
-
-  $("#emailList").empty();
-  _(emails).each(function(data, e) {
-      var block = $("<div>").addClass("emailblock");
-      var label = $("<div>").addClass("email").text(e);
-      var meta = $("<div>").addClass("meta");
-
-      /* 
-        var priv = $("<div class='keyblock'>").text(data.priv);
-        priv.hide();
-       */
-
-      var pub = $("<div class='keyblock'>").text(data.pub);
-      pub.hide();
-      var linkblock = $("<div>");
-      var puba = $("<a>").text("[show public key]");
-      // var priva = $("<a>").text("[show private key]");
-      puba.click(function() {pub.show()});
-      // priva.click(function() {priv.show()});
-      linkblock.append(puba);
-      // linkblock.append(" / ");
-      // linkblock.append(priva);
-      
-      var deauth = $("<button>").text("Forget this Email");
-      meta.append(deauth);
-      deauth.click(function() {
-        var t = JSON.parse(window.localStorage.emails);
-        delete t[e];
-        window.localStorage.emails = JSON.stringify(t);
-        // remove email from server
-        $.post("/wsapi/remove_email", {"email" : e}, function(response) {
-                    alert("response is : " +response);
-                    display_saved_ids();
-                    });
-      });
-      
-      var d = new Date(data.created);
-      var datestamp = $("<div class='date'>").text("Logged in at " + d.getHours() + ":" + d.getMinutes() + ":" + d.getSeconds() + ", " + d.getMonth() + "/" + d.getDay() + "/" + d.getUTCFullYear());
-
-      meta.append(datestamp);
-      meta.append(linkblock);
-                  
-      block.append(label);
-      block.append(meta);
-      // block.append(priv);
-      block.append(pub);
-      
-      $("#emailList").append(block);
-  });
-}
-</script>
-
-</html>
diff --git a/browserid/static/primaries.html b/browserid/static/primaries.html
deleted file mode 100644
index 5e7d2889a6e336a0df482c3541fcbeb6fb6d04a5..0000000000000000000000000000000000000000
--- a/browserid/static/primaries.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta http-equiv="Content-type" content="text/html; charset=utf-8">
-  <title>BrowserID for Identity Providers</title>
-  <link rel="stylesheet" href="css/style.css"  type="text/css">
-</head>
-<body>
-<div id="splash">
-  <div class="header">
-    <div class="manage"><a id="manageLink" href="manage.html">manage my logins</a></div>
-  </div>
-  <div class="topquarter">
-    <div>
-      <a href="/"><div class="title"><img src="i/browserid_logo_lil.png"></div></a>
-      <div class="subtitle">for Users</div>
-    </div>
-  </div>
-  <div class="bottomhalf">
-    <div class="why">
-      <p>
-        This page is dedicated to the <b>Identity Providers</b>.
-        These are dudes like Yahoo!, Google, Twitter, Facebook, and
-        even github.  If someone new wants to join they party, hey,
-        they <a href="http://www.mozilla.org/about/manifesto">should
-        be able to</a>.
-      </p>
-      <p>
-        But there's a catch.  This page hasn't been written yet!  No no, don't
-        get frustrated, just go write something and
-        then <a href="https://github.com/mozilla/browserid/blob/master/authority/static/primaries.html">contribute
-        it on github</a>.
-      </p>
-      <br><br><br>
-    </div>
-  </div>
-  <div class="footer">
-    <div>
-      <div class="right">
-        <p><img src="i/browserid_logo_sm.png"> is an <b>open source experiment</b> into improving identity and authentication on the web, by
-          <a href="https://mozillalabs.com">mozilla labs</a>.</p>
-      </div>
-      <div class="left">
-        <p> <a href="https://github.com/mozilla/browserid">Source Code</a>&nbsp;&nbsp;&nbsp;<a href="https://wiki.mozilla.org/Identity/Verified_Email_Protocol">Specification</a>&nbsp;&nbsp;&nbsp;<a href="http://groups.google.com/group/mozilla-labs">Mailing list</a> </p>
-        <p class="copyright">Copyright © 2011 Mozilla.  All rights reserved. </p>
-      </div>
-    </div>
-  </div>
-</div>
-</body>
-</html>
diff --git a/browserid/static/privacy.html b/browserid/static/privacy.html
deleted file mode 100644
index e88e177959f93e8980312ba68e464593f37e26f3..0000000000000000000000000000000000000000
--- a/browserid/static/privacy.html
+++ /dev/null
@@ -1,110 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta http-equiv="Content-type" content="text/html; charset=utf-8">
-  <title>BrowserID - Privacy and Terms of Service</title>
-  <link rel="stylesheet" href="css/style.css"  type="text/css">
-</head>
-<body onload="display_saved_ids()">
-<div id="splash">
-  <div class="topquarter">
-    <div>
-      <a href="/"><div class="title"><img src="i/browserid_logo_lil.png"></div></a>
-      <div class="subtitle">Privacy and Terms of Service</div>
-    </div>
-  </div>
-  <div class="bottomhalf">
-    <div class="why">
-      <p>
-        Privacy Policy and Terms of Service
-      </p>
-    </div>
-    <div>
-      to be filled in soon
-    </div>
-  </div>
-  <div class="footer">
-    <div>
-      <div class="right">
-        <p><img src="i/browserid_logo_sm.png"> is an <b>open source experiment</b> into improving identity and authentication on the web, by
-          <a href="https://mozillalabs.com">mozilla labs</a>.</p>
-      </div>
-      <div class="left">
-        <p> <a href="https://github.com/mozilla/browserid">Source Code</a>&nbsp;&nbsp;&nbsp;<a href="https://wiki.mozilla.org/Identity/Verified_Email_Protocol">Specification</a>&nbsp;&nbsp;&nbsp;<a href="http://groups.google.com/group/mozilla-labs">Mailing list</a> </p>
-        <p class="copyright">Copyright © 2011 Mozilla.  All rights reserved. </p>
-      </div>
-    </div>
-  </div>
-</div>
-</body>
-<script src="dialog/jquery-min.js"></script>
-<script src="dialog/underscore-min.js"></script>
-<script>
-function display_saved_ids()
-{
-  var emails = {};
-  if (window.localStorage.emails) {
-    emails = JSON.parse(window.localStorage.emails);
-  }
-
-  $('#cancellink').click(function() {
-    if (confirm('Are you sure you want to cancel your account?')) {
-      $.post("/wsapi/account_cancel", {}, function(result) {
-        window.localStorage.emails = null;
-        document.location="/";
-      });
-    }
-  });
-
-  $("#emailList").empty();
-  _(emails).each(function(data, e) {
-      var block = $("<div>").addClass("emailblock");
-      var label = $("<div>").addClass("email").text(e);
-      var meta = $("<div>").addClass("meta");
-
-      /* 
-        var priv = $("<div class='keyblock'>").text(data.priv);
-        priv.hide();
-       */
-
-      var pub = $("<div class='keyblock'>").text(data.pub);
-      pub.hide();
-      var linkblock = $("<div>");
-      var puba = $("<a>").text("[show public key]");
-      // var priva = $("<a>").text("[show private key]");
-      puba.click(function() {pub.show()});
-      // priva.click(function() {priv.show()});
-      linkblock.append(puba);
-      // linkblock.append(" / ");
-      // linkblock.append(priva);
-      
-      var deauth = $("<button>").text("Forget this Email");
-      meta.append(deauth);
-      deauth.click(function() {
-        var t = JSON.parse(window.localStorage.emails);
-        delete t[e];
-        window.localStorage.emails = JSON.stringify(t);
-        // remove email from server
-        $.post("/wsapi/remove_email", {"email" : e}, function(response) {
-                    alert("response is : " +response);
-                    display_saved_ids();
-                    });
-      });
-      
-      var d = new Date(data.created);
-      var datestamp = $("<div class='date'>").text("Logged in at " + d.getHours() + ":" + d.getMinutes() + ":" + d.getSeconds() + ", " + d.getMonth() + "/" + d.getDay() + "/" + d.getUTCFullYear());
-
-      meta.append(datestamp);
-      meta.append(linkblock);
-                  
-      block.append(label);
-      block.append(meta);
-      // block.append(priv);
-      block.append(pub);
-      
-      $("#emailList").append(block);
-  });
-}
-</script>
-
-</html>
diff --git a/browserid/static/users.html b/browserid/static/users.html
deleted file mode 100644
index f510bf29a706b01ae0c04661095661995d3aee06..0000000000000000000000000000000000000000
--- a/browserid/static/users.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta http-equiv="Content-type" content="text/html; charset=utf-8">
-  <title>BrowserID for Users</title>
-  <link rel="stylesheet" href="css/style.css"  type="text/css">
-</head>
-<body>
-<div id="splash">
-  <div class="header">
-    <div class="manage"><a id="manageLink" href="manage.html">manage my logins</a></div>
-  </div>
-  <div class="topquarter">
-    <div>
-      <a href="/"><div class="title"><img src="i/browserid_logo_lil.png"></div></a>
-      <div class="subtitle">for Users</div>
-    </div>
-  </div>
-  <div class="bottomhalf">
-    <div class="why">
-      <p>
-        This page is dedicated to the <b>Users</b>.  They matter <b>a
-        lot</b>.  This page hasn't been written yet, but rather than
-        getting frustrated that the content doesn't exist, you should
-        go write it,
-        then <a href="https://github.com/mozilla/browserid/blob/master/browserid/static/users.html">contribute
-        it on github</a>.
-      </p>
-    </div>
-  </div>
-  <div class="footer">
-    <div>
-      <div class="right">
-        <p><img src="i/browserid_logo_sm.png"> is an <b>open source experiment</b> into improving identity and authentication on the web, by
-          <a href="https://mozillalabs.com">mozilla labs</a>.</p>
-      </div>
-      <div class="left">
-        <p> <a href="https://github.com/mozilla/browserid">Source Code</a>&nbsp;&nbsp;&nbsp;<a href="https://wiki.mozilla.org/Identity/Verified_Email_Protocol">Specification</a>&nbsp;&nbsp;&nbsp;<a href="http://groups.google.com/group/mozilla-labs">Mailing list</a> </p>
-        <p class="copyright">Copyright © 2011 Mozilla.  All rights reserved. </p>
-      </div>
-    </div>
-  </div>
-</div>
-</body>
-</html>