-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.php
More file actions
49 lines (46 loc) · 1.17 KB
/
test.php
File metadata and controls
49 lines (46 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>Boutons centrés</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 100vh;
margin: 0;
background-image:"aceuil/img/one.jpg";
background-size: cover;
height: 100vh;
}
.button-container {
display: flex;
justify-content: center;
width: 100%;
margin: auto;
}
button {
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: black;
}
button:hover {
background-color: blueviolet;
color: black;
}
</style>
</head>
<body>
<div class="text">
<p><h1><strong>Vous Souhaitez vous connecter au compte:</strong></h1></p>
</div>
<div class="button-container">
<a href="loginE.php"><button>Enseigant</button></a>
</div>
<div class="button-container">
<a href="login.php"><button>Administrateur</button></a>
</div>
</body>
</html>