Transfert/templates/login.html
2023-06-22 08:10:29 +00:00

34 lines
991 B
HTML

{% include 'base.html' %}
{% block main %}
<div class="space"></div>
{{ alertmessage | safe }}
<br>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/c>
<link href='https://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Nunito' rel='stylesheet' type='text/css'>
<body>
<center>
<div class="space"></div>
<center>
<div class="login">
<h3>Login</h3>
<br><br>
<form action="/login" method="post">
<div class="form-group">
<input type="text" name="username" placeholder="Username" required>
</div>
<div class="form-group">
<input type="password" name="password" placeholder="Password" required>
</div>
<br>
<button name="Login" type="submit" class="btn btn-info"><span class="fas fa-user">&nbsp;&nbsp;&nbsp; Login</span></button>
</form>
</div>
</center>
{% endblock %}
{% include 'foot.html' %}