-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (32 loc) · 1.66 KB
/
index.html
File metadata and controls
41 lines (32 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CloudOS</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="icon" href="iconCloudOS.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="login-screen" style="position: fixed; inset: 0; background: #111; color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 99999;">
<h2>Bienvenue sur CloudOS</h2>
<input id="login-username" placeholder="Nom d'utilisateur" style="margin: 10px; padding: 10px; color: #111;" />
<input id="login-password" type="password" placeholder="Mot de passe" style="margin: 10px; padding: 10px; color: #111;" />
<button id="login-button" style="padding: 10px 20px;">Se connecter</button>
<div id="login-error" style="color: red; margin-top: 10px;"></div>
</div>
<div id="desktop" class="flex-grow relative"></div>
<div class="taskbar">
<button>Notepad</button>
<button>Terminal</button>
<button>Files</button>
<button>Tic Tac Toe</button>
<button>Browser</button>
<button>Settings</button>
<button>Installer</button> <!-- AJOUTEZ CE BOUTON -->
</div>
<ul id="context-menu" style="display: none; position: absolute; z-index: 100000; background: #333; color: white; list-style: none; padding: 5px 0; border-radius: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.5); font-family: sans-serif; min-width: 150px;"></ul>
<script type="module" src="./main.js" defer></script>
</body>
</html>