-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdemo.html
55 lines (53 loc) · 2.59 KB
/
demo.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Create link</title>
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<div>
Hello, you will create your link :
<form id="form-profile">
firstname
<input type="text" id="first-name" name="firstname" autocomplete="given-name" placeholder="Jean" aria-labelledby="field-firstname-label" required="" autofocus="">
</br>
lastname
<input type="text" id="last-name" name="lastname" autocomplete="family-name" placeholder="Dupont" aria-labelledby="field-lastname-label" required="" autofocus="">
</br>
birthday
<input type="text" id="birthdate" name="birthday" autocomplete="bday" placeholder="01/01/1970" maxlength="10" aria-labelledby="field-birthday-label" required="">
</br>
lieunaissance
<input type="text" id="birth-place" name="lieunaissance" aria-labelledby="field-lieunaissance-label" placeholder="Lyon" required="">
</br>
address
<input type="text" id="address" name="address" autocomplete="address-line1" aria-labelledby="field-address-label" placeholder="999 avenue de france" required="">
</br>
town
<input type="text" id="city" name="town" autocomplete="address-level1" aria-labelledby="field-town-label" placeholder="Paris" required="">
</br>
zipcode
<input type="number" min="00000" max="99999" id="post-code" name="post-code" autocomplete="zipcode" minlength="4" maxlength="5" aria-labelledby="field-zipcode-label" placeholder="75001" required="">
</br></br></br>
REASON </br>
<select id="motive" name="motive">
<option disabled selected>Sélectionnez une raison...</option>
<optgroup label="Couvre-feu">
<option value="curfew-travail">travail</option>
<option value="curfew-sante">sante</option>
<option value="curfew-famille">famille</option>
<option value="curfew-convocation_demarches">convocation/démarches</option>
<option value="curfew-transit">transit</option>
<option value="curfew-animaux">animaux</option>
</optgroup>
</select>
</form>
<button onclick="refreshData()">Valider</button>
<div id="generation-link">
<a href="generate.html"></a>
</div>
</div>
</body>
<script src="demo.js"></script>
</html>