Initial commit

This commit is contained in:
NohamR
2023-10-06 17:25:36 +02:00
commit 1e9670588c
27 changed files with 519 additions and 0 deletions

17
temp/popup.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>Configuration AutoEnt</title>
</head>
<body>
<h2>Configuration AutoEnt</h2>
<label for="email">Adresse e-mail :</label>
<input type="text" id="email" placeholder="Saisissez votre e-mail"><br><br>
<label for="password">Mot de passe :</label>
<input type="password" id="password" placeholder="Saisissez votre mot de passe"><br><br>
<button id="saveButton">Enregistrer</button>
</body>
<script src="popup.js"></script>
</html>