508. Updates copyright/license information
[mediagoblin.git] / mediagoblin / templates / mediagoblin / auth / register.html
index f34893972607ada4e8c8d07362763a3530239b82..e72b3a528425d43bf068129fc5f5ae4f850a1b5f 100644 (file)
@@ -1,6 +1,6 @@
 {#
 # GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011 Free Software Foundation, Inc
+# Copyright (C) 2011 MediaGoblin contributors.  See AUTHORS.
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as published by
 {% import "/mediagoblin/utils/wtforms.html" as wtforms_util %}
 
 {% block mediagoblin_content %}
+
   <form action="{{ request.urlgen('mediagoblin.auth.register') }}"
         method="POST" enctype="multipart/form-data">
-    <table>
-      {{ wtforms_util.render_table(register_form) }}
-      <tr>
-        <td></td>
-        <td><input type="submit" value="submit" /></td>
-      </tr>
-    </table>
+    <div class="grid_6 prefix_1 suffix_1 form_box">
+      <h1>{% trans %}Create an account!{% endtrans %}</h1>
+      {{ wtforms_util.render_divs(register_form) }}
+      <div class="form_submit_buttons">
+        <input type="submit" value="{% trans %}Create{% endtrans %}"
+               class="button" />
+      </div>
+    </div>
   </form>
 {% endblock %}