Add <section> tags to the downtime page so that theme render correctly.

This commit is contained in:
jgen 2014-04-18 20:21:50 -04:00
parent 737f96b8bb
commit 71d7474476

View File

@ -28,27 +28,31 @@ class DowntimeTheme extends Themelet {
</head> </head>
<body> <body>
<div id="downtime"> <div id="downtime">
<h1><center>Down for Maintenance</center></h1> <section>
<div id="message"> <h1><center>Down for Maintenance</center></h1>
$message <div id="message" class="blockbody">
</div> $message
<h3>Admin Login</h3> </div>
<div id="login"> </section>
<form action="$login_link" method="POST"> <section>
$auth <h3>Admin Login</h3>
<table id="login_table" summary="Login Form"> <div id="login" class="blockbody">
<tr> <form action="$login_link" method="POST">
<td width="70"><label for="user">Name</label></td> $auth
<td width="70"><input id="user" type="text" name="user"></td> <table id="login_table" summary="Login Form">
</tr> <tr>
<tr> <td width="70"><label for="user">Name</label></td>
<td><label for="pass">Password</label></td> <td width="70"><input id="user" type="text" name="user"></td>
<td><input id="pass" type="password" name="pass"></td> </tr>
</tr> <tr>
<tr><td colspan="2"><input type="submit" value="Log In"></td></tr> <td><label for="pass">Password</label></td>
</table> <td><input id="pass" type="password" name="pass"></td>
</form> </tr>
</div> <tr><td colspan="2"><input type="submit" value="Log In"></td></tr>
</table>
</form>
</div>
</section>
</div> </div>
</body> </body>
</html> </html>