-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathticket.html
More file actions
74 lines (52 loc) · 2.44 KB
/
Copy pathticket.html
File metadata and controls
74 lines (52 loc) · 2.44 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Ticket</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="center"> <!-- Début de div "center"(pour centrer) -->
<div class="content"> <!-- Début de div "content" -->
<h1>Soumettez Votre Problème</h1>
<table>
<tr><td><label><span style="color:red">*</span>Nom:</label>
<td><input type="text" id="name"> <!-- Entrée pour le nom de l'utilisateur -->
<br>
<tr><td><label><span style="color:red">*</span>Email:</label>
<td><input type="text" id="email"> <!-- Entrée pour le email de l'utilisateur -->
<br>
<tr><td><label><span style="color:red">*</span>Grade:</label>
<td><select name="grade" id="grade"> <!-- Entrée pour l'année de l'utilisateur -->
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<td></select>
<br><br>
<tr><td><label><span style="color:red">*</span>Type:</label>
<td><select name="type" id="type"> <!-- Entrée pour le type de problème de l'utilisateur -->
<option value="chromebook">Chromebook</option>
<option value="wifi">Wifi</option>
<option value="other">Other</option>
<td></select>
<br><br>
<tr><td><label><span style="color:red">*</span>Description:</label>
<td><textarea id="description"></textarea> <!-- Entrée pour la description du problème de l'utilisateur -->
</table>
<br>
<!-- Bouton de soumettre les données -->
<input type="button" class="submit" onclick="CreateTicket(); window.location.href='merci.html'; merci();" value="SOUMETTRE">
</div> <!-- Fin du div "content" -->
</div> <!-- Fin du div "center" -->
<header> <!-- Début du header -->
<a href="https://paul-desmarais.ecolecatholique.ca/" target="_blank">
<img src="Paul-D.png" class="image">
</a>
<!-- Bouton pour retourner à la page d'acceuil -->
<button class="backbutton" onclick="window.location.href='index.html'">Back</button>
</header> <!-- Fin du header -->
<script src="main.js"></script>
</body>
</html>