You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
54 lines
1.6 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<!--Boostrap-->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
|
<!--CSS-->
|
|
<link rel="stylesheet" href="/~rorossetto/Php_RSS/fluxRSS/templates/CSS/myStyle.css" >
|
|
<title class="enTitre">Login</title>
|
|
</head>
|
|
<body class="myBody">
|
|
|
|
<div align="center">
|
|
{% if dVue is defined %}
|
|
{% if dVueEreur is defined and dVueEreur|length >0 %}
|
|
<h2>ERREUR !!!!!</h2>
|
|
{% for value in dVueEreur %}
|
|
<p>{{value}}</p>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
<h1 class="d-flex justify-content-center entete margOp">Login</h1>
|
|
<form method="POST" class="form-floating" name="myform" id="myform">
|
|
<table>
|
|
<tr>
|
|
<td>Nom</td>
|
|
<td>
|
|
<input class="margOp" name="username" id="username" type="text" size="20" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Password</td>
|
|
<td>
|
|
|
|
<input class="margOp" type="password" id="password" name="password" required>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table>
|
|
<tr>
|
|
<td><input class="margOp" type="submit" value="Envoyer" /></td>
|
|
<td><input class="margOp" type="reset" value="Rétablir" /></td>
|
|
</tr>
|
|
</table>
|
|
<!-- action !!!!!!!!!! -->
|
|
<input type="hidden" name="action" value="connection" />
|
|
</form>
|
|
<a href="/~rorossetto/Php_RSS/fluxRSS/user/" class="modal-content">Not a member? Go to Articles</a>
|
|
</div>
|
|
</body>
|
|
</html>
|