Ben2092 commited on
Commit
c209934
·
verified ·
1 Parent(s): ec006fe

Je veux créer une application web de gestion d'université ou d'etablissement scolaire. La page d'acceuil dois avoir les boutons suivants: Inscription, réinscription, Classes, Notes, Enseignants, Absences, Payement de frais de formation, Rapport, Tableau de bord , Connexion - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +5 -3
  2. index.html +154 -18
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ben2092
3
- emoji: 🐨
4
  colorFrom: yellow
5
  colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: ben2092
3
+ emoji: 🐳
4
  colorFrom: yellow
5
  colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,155 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Système de Gestion Universitaire</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
9
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
13
+ <style>
14
+ .vanta-bg {
15
+ position: absolute;
16
+ width: 100%;
17
+ height: 100%;
18
+ z-index: -1;
19
+ }
20
+ .glass-effect {
21
+ backdrop-filter: blur(10px);
22
+ background: rgba(255, 255, 255, 0.1);
23
+ border: 1px solid rgba(255, 255, 255, 0.2);
24
+ }
25
+ .btn-hover-effect {
26
+ transition: all 0.3s ease;
27
+ }
28
+ .btn-hover-effect:hover {
29
+ transform: translateY(-5px);
30
+ box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
31
+ }
32
+ </style>
33
+ </head>
34
+ <body class="min-h-screen bg-gradient-to-br from-blue-900 to-indigo-900 text-white overflow-x-hidden">
35
+ <div id="vanta-bg" class="vanta-bg"></div>
36
+
37
+ <nav class="glass-effect rounded-lg mx-4 mt-4 p-4 flex justify-between items-center">
38
+ <div class="flex items-center space-x-2">
39
+ <i data-feather="book-open" class="text-blue-300"></i>
40
+ <h1 class="text-xl font-bold">EduManage Pro</h1>
41
+ </div>
42
+ <a href="#" class="px-4 py-2 bg-blue-600 hover:bg-blue-700 rounded-lg transition-colors flex items-center space-x-2">
43
+ <i data-feather="log-in"></i>
44
+ <span>Connexion</span>
45
+ </a>
46
+ </nav>
47
+
48
+ <main class="container mx-auto px-4 py-12">
49
+ <div class="text-center mb-16" data-aos="fade-down">
50
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Plateforme de Gestion Universitaire</h2>
51
+ <p class="text-xl text-blue-200 max-w-3xl mx-auto">Solution complète pour administrer votre établissement éducatif avec efficacité et simplicité</p>
52
+ </div>
53
+
54
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6" data-aos="fade-up">
55
+ <a href="#" class="glass-effect rounded-xl p-6 flex flex-col items-center text-center btn-hover-effect">
56
+ <div class="p-3 bg-blue-500 rounded-full mb-4">
57
+ <i data-feather="user-plus" class="w-8 h-8"></i>
58
+ </div>
59
+ <h3 class="text-xl font-semibold mb-2">Inscription</h3>
60
+ <p class="text-blue-200">Nouveaux étudiants</p>
61
+ </a>
62
+
63
+ <a href="#" class="glass-effect rounded-xl p-6 flex flex-col items-center text-center btn-hover-effect">
64
+ <div class="p-3 bg-green-500 rounded-full mb-4">
65
+ <i data-feather="refresh-cw" class="w-8 h-8"></i>
66
+ </div>
67
+ <h3 class="text-xl font-semibold mb-2">Réinscription</h3>
68
+ <p class="text-blue-200">Étudiants existants</p>
69
+ </a>
70
+
71
+ <a href="#" class="glass-effect rounded-xl p-6 flex flex-col items-center text-center btn-hover-effect">
72
+ <div class="p-3 bg-purple-500 rounded-full mb-4">
73
+ <i data-feather="users" class="w-8 h-8"></i>
74
+ </div>
75
+ <h3 class="text-xl font-semibold mb-2">Classes</h3>
76
+ <p class="text-blue-200">Gestion des classes</p>
77
+ </a>
78
+
79
+ <a href="#" class="glass-effect rounded-xl p-6 flex flex-col items-center text-center btn-hover-effect">
80
+ <div class="p-3 bg-yellow-500 rounded-full mb-4">
81
+ <i data-feather="bar-chart-2" class="w-8 h-8"></i>
82
+ </div>
83
+ <h3 class="text-xl font-semibold mb-2">Notes</h3>
84
+ <p class="text-blue-200">Saisie et consultation</p>
85
+ </a>
86
+
87
+ <a href="#" class="glass-effect rounded-xl p-6 flex flex-col items-center text-center btn-hover-effect">
88
+ <div class="p-3 bg-red-500 rounded-full mb-4">
89
+ <i data-feather="user-check" class="w-8 h-8"></i>
90
+ </div>
91
+ <h3 class="text-xl font-semibold mb-2">Enseignants</h3>
92
+ <p class="text-blue-200">Gestion du personnel</p>
93
+ </a>
94
+
95
+ <a href="#" class="glass-effect rounded-xl p-6 flex flex-col items-center text-center btn-hover-effect">
96
+ <div class="p-3 bg-orange-500 rounded-full mb-4">
97
+ <i data-feather="clock" class="w-8 h-8"></i>
98
+ </div>
99
+ <h3 class="text-xl font-semibold mb-2">Absences</h3>
100
+ <p class="text-blue-200">Suivi de présence</p>
101
+ </a>
102
+
103
+ <a href="#" class="glass-effect rounded-xl p-6 flex flex-col items-center text-center btn-hover-effect">
104
+ <div class="p-3 bg-teal-500 rounded-full mb-4">
105
+ <i data-feather="credit-card" class="w-8 h-8"></i>
106
+ </div>
107
+ <h3 class="text-xl font-semibold mb-2">Paiement</h3>
108
+ <p class="text-blue-200">Frais de formation</p>
109
+ </a>
110
+
111
+ <a href="#" class="glass-effect rounded-xl p-6 flex flex-col items-center text-center btn-hover-effect">
112
+ <div class="p-3 bg-pink-500 rounded-full mb-4">
113
+ <i data-feather="file-text" class="w-8 h-8"></i>
114
+ </div>
115
+ <h3 class="text-xl font-semibold mb-2">Rapport</h3>
116
+ <p class="text-blue-200">Statistiques et analyses</p>
117
+ </a>
118
+
119
+ <a href="#" class="glass-effect rounded-xl p-6 flex flex-col items-center text-center btn-hover-effect">
120
+ <div class="p-3 bg-indigo-500 rounded-full mb-4">
121
+ <i data-feather="pie-chart" class="w-8 h-8"></i>
122
+ </div>
123
+ <h3 class="text-xl font-semibold mb-2">Tableau de bord</h3>
124
+ <p class="text-blue-200">Vue d'ensemble</p>
125
+ </a>
126
+ </div>
127
+ </main>
128
+
129
+ <footer class="glass-effect rounded-lg mx-4 mb-4 p-6 mt-12 text-center">
130
+ <p class="text-blue-200">© 2023 EduManage Pro - Tous droits réservés</p>
131
+ </footer>
132
+
133
+ <script>
134
+ VANTA.GLOBE({
135
+ el: "#vanta-bg",
136
+ mouseControls: true,
137
+ touchControls: true,
138
+ gyroControls: false,
139
+ minHeight: 200.00,
140
+ minWidth: 200.00,
141
+ scale: 1.00,
142
+ scaleMobile: 1.00,
143
+ color: 0x3b82f6,
144
+ backgroundColor: 0x0
145
+ });
146
+
147
+ AOS.init({
148
+ duration: 1000,
149
+ once: true
150
+ });
151
+
152
+ feather.replace();
153
+ </script>
154
+ </body>
155
  </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Je veux créer une application web de gestion d'université ou d'etablissement scolaire. La page d'acceuil dois avoir les boutons suivants: Inscription, réinscription, Classes, Notes, Enseignants, Absences, Payement de frais de formation, Rapport, Tableau de bord , Connexion