diff options
Diffstat (limited to 'jimbrella/templates')
-rw-r--r-- | jimbrella/templates/auth.html | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/jimbrella/templates/auth.html b/jimbrella/templates/auth.html index 9fb1e14..a6a7b5a 100644 --- a/jimbrella/templates/auth.html +++ b/jimbrella/templates/auth.html @@ -1,3 +1,4 @@ +{# Login and register interface #} <!DOCTYPE html> <html> <head> @@ -13,16 +14,17 @@ {% endif %} <div id="container"> - {% include "admin/tabs.html" %} <div class="banner-container"> {% if error %} <div class="banner error">{{ error }}</div> {% endif %} - <form method="post" action="/{{ action }}"> - <input name="username" placeholder="Username" /> <br /> - <input name="password" type="password" placeholder="Password" /> <br /> - <input type="submit" value="{{ action|capitalize }}" /> - </form> + <div class="banner blue"> + <form method="post" action="/{{ action }}"> + <input name="username" placeholder="Username" /> <br /> <br /> + <input name="password" type="password" placeholder="Password" /> <br /> <br /> + <input type="submit" value="{{ action|capitalize }}" /> + </form> + </div> </div> </div> </body> |