Revision
176
Author
misc
Date
2010-12-16 02:19:00 +0100 (Thu, 16 Dec 2010)

Log Message

- html5 fix ( missing closing tags, and border=0 is no longer valid ), patch by Maarten Vanraes

Modified Paths

Modified: identity/CatDap/trunk/root/register/index.tt
===================================================================
--- identity/CatDap/trunk/root/register/index.tt	2010-12-16 01:18:56 UTC (rev 175)
+++ identity/CatDap/trunk/root/register/index.tt	2010-12-16 01:19:00 UTC (rev 176)
@@ -4,8 +4,8 @@
 
 <div id="input_form">
 <form method="post" action="/register/check">
-    <table border=0>
-        <tr>
+	<table>
+		<tr>
 			<td><label for="uid_">[% l('Username') %]</label></td>
 			<td><input id="uid_" type="text" name="uid" value="[% c.request.params.uid %]" /</td>
 		</tr><tr>
@@ -28,6 +28,6 @@
 				<button type="submit" value="[% l('Register') %]">[% l('Register') %]</button>
 			</td>
 		</tr>
-
+	</table>
 </form>
 </div>