Add Header

This commit is contained in:
Jan Bader 2016-12-03 21:09:33 +01:00
parent e4755bcad8
commit 7a5bc35cc3

View File

@ -33,18 +33,23 @@
</head> </head>
<head><title>Login</title> <head><title>Login</title>
<body> <body>
<form id="loginForm" action="/api/v1/login" method="POST"> <div class="container" id="head">
<label for="username">User</label> Budgeteer
<input type="text" name="username" /><br /> </div>
<div class="container center-block" id="content">
<form id="loginForm" action="/api/v1/login" method="POST">
<label for="username">User</label>
<input type="text" name="username" /><br />
<label for="password">Password</label> <label for="password">Password</label>
<input type="password" name="password" /><br /> <input type="password" name="password" /><br />
<div id="invalidCredentials"> <div id="invalidCredentials">
The entered credentials are invalid The entered credentials are invalid
</div> </div>
<input type="submit" value="Login" /> <input type="submit" value="Login" />
</form> </form>
</div>
</body> </body>
</html> </html>