-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1.17 KB
/
index.html
File metadata and controls
39 lines (33 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Compteur de révisions Premium</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<div class="container">
<h1>Compteur de révisions</h1>
<div class="input-group">
<input type="text" id="matiere" placeholder="Nom de la matière">
<input type="number" id="heures" placeholder="Heures révisées">
<button id="ajouter">Ajouter</button>
</div>
<h2>Révisions par matière</h2>
<ul id="liste"></ul>
<h2>Total général : <span id="total">0</span> heures</h2>
<!-- Fonctionnalité premium -->
<div id="premium">
<h2>Fonctionnalité Premium</h2>
<p>Générer un PDF des révisions et voir le graphique avancé.</p>
<a href="https://buy.stripe.com/test_fZu28j9rJchN2DX7eNc7u00" target="_blank">
<button>Débloquer Premium</button>
</a>
</div>
<canvas id="chart" width="400" height="200" style="display:none;"></canvas>
</div>
<script src="script.js"></script>
</body>
</html>