31 lines
946 B
HTML
31 lines
946 B
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link href="{{url_for('static', filename = 'style.css')}}" rel="stylesheet">
|
|
{{ fontawesome_css() }}
|
|
|
|
<div id="titre">Pyng</div>
|
|
<div class="space"></div>
|
|
<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>
|
|
</html>
|