diff options
| author | Nils Schwabe | 2014-05-20 13:35:07 +0200 |
|---|---|---|
| committer | Nils Schwabe | 2014-05-20 13:35:07 +0200 |
| commit | f3364894c1a29431fcb93e7dcd004d50e52e4b47 (patch) | |
| tree | e3ee7f63bb578728def1f108ec739be9254ec063 /management-interface/views/login.htm | |
| parent | Add login functionallity (diff) | |
| download | masterserver-f3364894c1a29431fcb93e7dcd004d50e52e4b47.tar.gz masterserver-f3364894c1a29431fcb93e7dcd004d50e52e4b47.tar.xz masterserver-f3364894c1a29431fcb93e7dcd004d50e52e4b47.zip | |
Improve login
Add satellite list
Add remove items for guests
Diffstat (limited to 'management-interface/views/login.htm')
| -rw-r--r-- | management-interface/views/login.htm | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/management-interface/views/login.htm b/management-interface/views/login.htm index f447cb8..d283f45 100644 --- a/management-interface/views/login.htm +++ b/management-interface/views/login.htm @@ -1,22 +1,20 @@ -<check if="{{ @loggedin }}"> -<true> <div class="container"> <div class="jumbotron"> - <h1>Already logged in.</h1> - </div> + <check if="{{ @loggedin }}"> + <true> + <h1>Already logged in.</h1> + </true> + <false> + <form class="form-signin" action="{{ @hostname }}do/login" method="post"> + <h2 class="form-signin-heading">Login</h2> + <input type="text" name="user" class="form-control" placeholder="Username" autofocus> + <input type="password" name="pass" class="form-control" placeholder="Password"> + <label class="checkbox"> + <input type="checkbox" name="remember" value="remember-me">Remember me</input> + </label> + <button class="btn btn-lg btn-primary btn-block" type="submit">Login</button> + </form> + </false> + </check> + </div> </div> -</true> -<false> -<div class="container"> - <form class="form-signin" action="{{ @hostname }}do/login" method="post"> - <h2 class="form-signin-heading">Login</h2> - <input type="text" name="user" class="form-control" placeholder="Username" autofocus> - <input type="password" name="pass" class="form-control" placeholder="Password"> - <label class="checkbox"> - <input type="checkbox" name="remember" value="remember-me">Remember me</input> - </label> - <button class="btn btn-lg btn-primary btn-block" type="submit">Login</button> - </form> -</div> -</false> -</check> |
