-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
51 lines (35 loc) · 1005 Bytes
/
index.php
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
echo("OK");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Jeu</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
<style>
html{
text-align: center;
}
</style>
</head>
<body>
<h1>Bonjour</h1>
<form>
<input placeholder="Pseudo" id="input" maxlength="15" />
<button onclick="submit()" type="submit" id="submitBtn">Commencer</button>
</form>
<script>
var button = document.getElementById("submitBtn");
var input = document.getElementById("input");
function submit(){
alert(input.value);
}
</script>
</body>
</html>