-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (22 loc) · 899 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (22 loc) · 899 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
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>Ticket</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="main"> <!-- Début de div "main"(pour centrer) -->
<!-- Un bouton pour amener l'utilisateur à la page de login administrative -->
<input type="button" class="login" value="Admin" onclick="window.location.href='adminLogin.html'">
<br>
<!-- Un bouton pour amener l'utilisateur à la page de ticket -->
<input type="button" class="login" value="User" onclick="window.location.href='ticket.html'">
</div> <!-- Fin du div "main" -->
<header> <!-- Début du header -->
<a href="https://paul-desmarais.ecolecatholique.ca/" target="_blank">
<img src="Paul-D.png" class="image">
</a>
</header> <!-- Fin du header -->
<script src="main.js"></script>
</body>
</html>