diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-17 17:39:26 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-17 17:39:26 +0200 |
commit | 6b4ef3af1319efd8e2069f4c67332378b8a1c64e (patch) | |
tree | f2b3fec7854925f53d6e9cc610d55b6f7f57d625 /module/web/templates/default/login.html | |
parent | breadcrumbs for dashboard (diff) | |
download | pyload-6b4ef3af1319efd8e2069f4c67332378b8a1c64e.tar.xz |
removed unneeded css, new login style
Diffstat (limited to 'module/web/templates/default/login.html')
-rw-r--r-- | module/web/templates/default/login.html | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/module/web/templates/default/login.html b/module/web/templates/default/login.html index 9454b709d..c8cd78a33 100644 --- a/module/web/templates/default/login.html +++ b/module/web/templates/default/login.html @@ -9,25 +9,31 @@ {% endif %} <br> <div class="login"> - <div class="login_title"> - {{_("Login")}} - </div> - <form action="/login" method="post" accept-charset="utf-8" id="login"> - <input type="hidden" name="do" value="login" /> - <div class="login_user"> - <span>{{_("Username")}}</span> - <input type="text" size="20" name="username" /> + <form action="/login" method="post" class="form-horizontal"> + <legend>Login</legend> + <div class="control-group"> + <label class="control-label" for="inputEmail">Username</label> + <div class="controls"> + <input type="text" id="inputEmail" placeholder="Username" name="username"> + </div> </div> - <div class="login_password"> - <span>{{_("Password")}}</span> - <input type="password" size="20" name="password" /> + <div class="control-group"> + <label class="control-label" for="inputPassword">Password</label> + <div class="controls"> + <input type="password" id="inputPassword" placeholder="Password" name="password"> + </div> </div> - <div class="login_submit"> - <input type="submit" value="Login" class="button" /> + <div class="control-group"> + <div class="controls"> + <label class="checkbox"> + <input type="checkbox"> Remember me + </label> + <button type="submit" class="btn">Login</button> + </div> </div> - </form> + </form> </div> - +<br> <div style="text-align: center"> {% if errors %} <p>{{_("Your username and password didn't match. Please try again.")}}</p> |