20 lines
671 B
PHP
20 lines
671 B
PHP
|
|
<?php
|
||
|
|
?>
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="fr">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Activer mon compte</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>Activer mon compte sur l'intranet</h1>
|
||
|
|
<form action="" method="post">
|
||
|
|
<label for="password1">Entrez votre nouveau mot de passe</label>
|
||
|
|
<input type="password" name="password1" id="password1" required><br>
|
||
|
|
<label for="password2">Confirmez votre mot de passe</label>
|
||
|
|
<input type="password" name="password2" id="password2" required><br>
|
||
|
|
<button type="submit">Créer mon mot de passe</button>
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
</html>
|