1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 18:29:23 +00:00

fixed a bug in login

This commit is contained in:
llj
2012-03-24 11:34:25 +08:00
parent b812c6b5a8
commit ea7949d40c

View File

@@ -4,9 +4,9 @@
<h2>用户登录</h2> <h2>用户登录</h2>
<form action="" method="post" class="login"> <form action="" method="post" class="login">
<label for="username">帐号:</label> <label for="username">帐号:</label>
<input type="text" name="username" value="用户名或注册邮箱" style="color:#666;" /><br /> <input type="text" name="username" value="用户名或注册邮箱" style="color:#666;" autocomplete="off" /><br />
<label for="password">密码:</label> <label for="password">密码:</label>
<input type="password" name="password" value="" /><br /> <input type="password" name="password" value="" autocomplete="off" /><br />
<p class="error hide"></p> <p class="error hide"></p>
<input type="submit" value="提交" class="submit" /> <input type="submit" value="提交" class="submit" />
<a href="{{ SITE_ROOT }}accounts/password/reset/">忘记密码?</a> <a href="{{ SITE_ROOT }}accounts/password/reset/">忘记密码?</a>