prettified login

This commit is contained in:
Thies Mueller 2021-01-08 18:00:53 +01:00
parent 301cc77848
commit e5d256665d

View File

@ -39,13 +39,15 @@ if(isset($errorMessage)) {
?> ?>
<script src="ressources/js/bootstrap.min.js"></script> <script src="ressources/js/bootstrap.min.js"></script>
<form action="?login=1" method="post"> <form action="?login=1" method="post">
Your Username:<br> <div class="form-group">
<input type="text" size="40" maxlength="250" name="username"><br><br> <label for="username">Username</label>
<input type="text" class="form-control" size="40" id="username" placeholder="Username" name="username"><br><br>
Your password:<br> </div>
<input type="password" size="40" name="password"><br> <div class="form-group">
<label for="password">Password</label>
<input type="submit" value="GO"> <input type="password" class="form-control" size="40" id="password" placeholder="Password" name="password"><br>
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form> </form>
</body> </body>
</html> </html>