-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 1.84 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 1.84 KB
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
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Random matching tool</title>
</head>
<body>
<div id="header" class="container">
<div class="card">
<img id="picture" src="images/Gifts.jpg" alt="Gifts on red background">
</div>
<div class="card">
<h1>Random matching tool</h1>
</div>
</div>
<div id="form" class="container">
<div class="text-center">
<h2>Non-reciprocal pairing draw...</h2>
<h2><em>Tirage au sort d'appariement non réciproque...</em></h2>
</div>
<p>In other words, how to receive and give one (and only one) gift
to two different people in a group ! <br>
Just enter each name of the people in the group... and "go" !
</p>
<p><em>En d'autres termes, comment recevoir et donner un (et un seul) cadeau
à deux personnes différentes dans un groupe ! <br>
Il suffit d'entrer chaque nom des personnes du groupe... et "go" !
</em></p>
<!-- <form action="result.html" method="post"> -->
<form method="post">
<div id="fields">
<input class="field" type="text" name="field-1" placeholder="Name 1">
<input class="field" type="text" name="field-2" placeholder="Name 2">
<input class="field" type="text" name="field-3" placeholder="Name 3">
</div>
<br><br>
<div class="box-between">
<input id="add" class="button" type="button" value="Add name">
<input class="button" type="submit" value="Go">
<input id="reset" class="button" type="button" value="Reset">
</div>
</form>
</div>
<ul id="result" class="container">
</ul>
<script type='module' src='./script.js'></script>
</body>
</html>