Cross-Site Request Forgery (CSRF)
Consignes
Réalisation
<html>
<head><link rel="stylesheet" href="css/pico.min.css"></head>
<body>
<main class="container">
<h2>Profile</h2>
<p>Modify your username and password:</p>
<form method="post">
<input type="text" name="username" value="user" required>
<input type="password" name="password" required>
<button type="submit">Update</button>
</form>
</main>
</body>
</html>
Last updated