minor W3C aspects. Thanks to Charles
This commit is contained in:
parent
cc98dea4e4
commit
b0d3a315aa
3 changed files with 4 additions and 4 deletions
|
@ -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){?>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue