first commit
This commit is contained in:
32
web/templates/login.html
Normal file
32
web/templates/login.html
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link href="{{url_for('static', filename = 'style.css')}}" rel="stylesheet">
|
||||
{{ fontawesome_css() }}
|
||||
|
||||
<div id="titre">{{ title }}</div>
|
||||
<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>
|
||||
<form action="/login" method="post">
|
||||
<input type="text" name="username" placeholder="Username" required>
|
||||
<input type="password" name="password" placeholder="Password" required>
|
||||
<button name="Login" type="submit"><span class="fas fa-user" onclick="loading();"></span></button>
|
||||
</form>
|
||||
</div>
|
||||
</center>
|
||||
|
||||
{% include 'foot.html' %}
|
||||
Reference in New Issue
Block a user