minor W3C aspects. Thanks to Charles

This commit is contained in:
Frank Karlitschek 2010-03-24 08:35:38 +01:00
parent cc98dea4e4
commit b0d3a315aa
3 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ document.getElementById('dbAdminUser').style.display=(show)?'table-row':'none';
document.getElementById('dbAdminPwd').style.display=(show)?'table-row':'none';
}
</script>
<form method="post" enctype="multipart/form-data">
<form method="post" enctype="multipart/form-data" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
<table cellpadding="5" cellspacing="5" border="0" class="loginform">
<?php
if(!$FIRSTRUN){?>
@ -35,4 +35,4 @@ document.getElementById('dbAdminPwd').style.display=(show)?'table-row':'none';
<tr><td>automaticly fill initial database:</td><td><input type="checkbox" name="filldb" size="30" class="formstyle" value='1' <?php if($FIRSTRUN) echo 'checked'; ?>></input></td></tr>
<tr><td></td><td><input type="submit" name="set_config" alt="save" value="save" class="formstyle" /></td></tr>
</table></form>
<script type="text/javascript">showDBAdmin()</script>
<script type="text/javascript">showDBAdmin()</script>

View File

@ -8,7 +8,7 @@
</head>
<body>
<?php
echo('<h1><a id="owncloud-logo" href="/'.$WEBROOT.'/"><span>ownCloud</span></a></h1>');
echo('<h1><a id="owncloud-logo" href="/'.$WEBROOT.'"><span>ownCloud</span></a></h1>');
// check if already configured. otherwise start configuration wizard

View File

@ -1,7 +1,7 @@
<?php
if(isset($loginresult) and $loginresult=='error') echo('<p class="errortext">login failed</p>');
?>
<form method="post" enctype="multipart/form-data">
<form method="post" enctype="multipart/form-data" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
<table cellpadding="5" cellspacing="5" border="0" class="loginform">
<tr><td>login:</td><td><input type="text" name="login" size="30" class="formstyle"></input></td></tr>
<tr><td>password:</td><td><input type="password" name="password" size="30" class="formstyle"></input></td></tr>