Skip to content
Snippets Groups Projects
Commit ecd68e0c authored by Jan-Christoph Borchardt's avatar Jan-Christoph Borchardt
Browse files

actually know what to put in which login field

parent 8080a1a5
No related branches found
No related tags found
No related merge requests found
......@@ -22,4 +22,20 @@ $(document).ready(function() {
$('label.sqlite').css('background-color', '#ddd');
$('label.mysql').css('background-color', '#fff');
});
// Hide and show input field values for login form
var textuser = "username";
var textpassword = "password";
$("#user").focus(function() {
if($(this).attr("value") == textuser) $(this).attr("value", "");
});
$("#user").blur(function() {
if($(this).attr("value") == "") $(this).attr("value", textuser);
});
$("#password").focus(function() {
if($(this).attr("value") == textpassword) $(this).attr("value", "");
});
$("#password").blur(function() {
if($(this).attr("value") == "") $(this).attr("value", textpassword);
});
});
......@@ -3,7 +3,7 @@
<form action="#" method="post">
<input type='hidden' name='install' value='true'/>
<fieldset>
<input type="text" name="login" value="your email" />
<input type="text" name="login" value="admin username" />
<input type="password" name="pass" value="password" />
</fieldset>
<fieldset>
......
<div id="login">
<img src="<?php echo image_path("", "owncloud-logo-medium-white.png"); ?>" alt="ownCloud" />
<img src="<?php echo image_path('', 'owncloud-logo-medium-white.png'); ?>" alt="ownCloud" />
<form action="index.php" method="post">
<!-- <h1>Sign in :</h1> -->
<fieldset>
<?php if($_["error"]): ?>
<?php if($_['error']): ?>
Login failed!
<?php endif; ?>
<input type="text" name="user" value="" />
<input type="password" name="password" />
<input type="text" name="user" id="user" value="username" />
<input type="password" name="password" id="password" value="password" />
<input type="submit" value="Log in" />
</fieldset>
</form>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment