-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimulation.html
More file actions
117 lines (110 loc) · 4.42 KB
/
simulation.html
File metadata and controls
117 lines (110 loc) · 4.42 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simulation Salaire Employé OFPPT</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: 'Consolas', sans-serif;
background-color: #ddd;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="container mt-5">
<h2 class="text-center">Simulation Salaire Employé OFPPT en ligne</h2>
<br>
<form>
<div class="row mb-3">
<div class="col-md-3">
<label class="form-label">Échelle</label>
<select class="form-select">
<option selected>choisir votre échelle</option>
</select>
</div>
<div class="col-md-3">
<label class="form-label">Échelon</label>
<select class="form-select">
<option selected>choisir votre échelon</option>
</select>
</div>
<div class="col-md-3">
<label class="form-label">Niveau Enseigné</label>
<select class="form-select">
<option selected>choisir Niveau...</option>
</select>
</div>
<div class="col-md-3">
<label class="form-label">Votre indice est :</label>
<input type="text" class="form-control">
</div>
</div>
<div class="row mb-3">
<div class="col-md-4">
<label class="form-label">Salaire de base</label>
<input type="text" class="form-control">
</div>
<div class="col-md-4">
<label class="form-label">Prime résidence</label>
<input type="text" class="form-control">
</div>
<div class="col-md-4">
<label class="form-label">Prime Transport</label>
<input type="text" class="form-control">
</div>
</div>
<div class="row mb-3">
<div class="col-md-4">
<label class="form-label">Retraite RCAR</label>
<input type="text" class="form-control">
</div>
<div class="col-md-4">
<label class="form-label">Mutuelle ATLANTA</label>
<input type="text" class="form-control">
</div>
<div class="col-md-4">
<label class="form-label">IR</label>
<input type="text" class="form-control">
</div>
</div>
<div class="row mb-3">
<div class="col-md-4">
<label class="form-label">Allocation Familiale</label>
<select class="form-select">
<option selected>Nombre enfants...</option>
</select>
</div>
<div class="col-md-4">
<label class="form-label">Indemnité Qualification</label>
<input type="text" class="form-control">
</div>
<div class="col-md-4">
<label class="form-label">Indemnité Logement</label>
<input type="text" class="form-control">
</div>
</div>
<div class="mb-3">
<label class="form-label">Salaire Net à recevoir est :</label>
<input type="text" class="form-control" readonly>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary">Simulation de Salaire</button>
</div>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript">
</script>
</body>
</html>