-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (23 loc) · 755 Bytes
/
Copy pathindex.php
File metadata and controls
26 lines (23 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Login</title>
</head>
<body>
<form action="login.php" method="POST">
<h2>
LOGIN
</h2>
<label>User Name</label>
<input type="text" name="uname" placeholder="User Name"><br>
<label>Password</label>
<input type="Password" name="Password" placeholder="Password"><br>
<label>Se connecter en tant que</label>
<input type="Password" name="Se connecter en tant que" placeholder="Password"><br>
<button type="submit">Login</button>
</form>
</body>
</html>