42 lines
888 B
Vue
42 lines
888 B
Vue
<template>
|
|
<Header />
|
|
<div class="pending-container">
|
|
<h1>Projet en attente de validation</h1>
|
|
<p>
|
|
Votre demande de création de projet a bien été reçue.<br />
|
|
Un administrateur doit valider votre projet avant que vous puissiez
|
|
continuer.
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Header from "@/components/HeaderComponent.vue";
|
|
</script>
|
|
|
|
<style scoped>
|
|
.pending-container {
|
|
max-width: 600px;
|
|
margin: 100px auto;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
background-color: #fffdf8;
|
|
border: 1px solid #ececec;
|
|
border-radius: 12px;
|
|
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
|
|
font-family: "Inter", sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
color: #f57c00;
|
|
font-size: 1.8rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.1rem;
|
|
color: #333;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
</style>
|