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.
58 lines
1.3 KiB
58 lines
1.3 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
|
|
<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>Login</h1>
|
|
<form method="POST" name="myform" id="myform">
|
|
<table>
|
|
<tr>
|
|
<td>Nom</td>
|
|
<td>
|
|
<input name="username" id="username" type="text" size="20" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Password</td>
|
|
<td>
|
|
|
|
<input type="password" id="password" name="password" required>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table>
|
|
<tr>
|
|
<td><input type="submit" value="Envoyer" /></td>
|
|
<td><input type="reset" value="Rétablir" /></td>
|
|
</tr>
|
|
</table>
|
|
<!-- action !!!!!!!!!! -->
|
|
<input type="hidden" name="action" value="connection" />
|
|
</form>
|
|
<a href="/~mapoint2/SAE/Php_RSS/fluxRSS/user/">Not a member? Go to Articles</a>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login</title>
|
|
</head>
|
|
<body> |