ToSubscribe.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <div class="profile-circle">
  3. <v-img
  4. src="/images/logos/opentalent/Logo_Opentalent_Artist-blanc-col.png"
  5. alt="Logo Opentalent Artist - logiciel de gestion et de communication pour les orchestres, les chorales, les compagnies artistiques et troupes"
  6. />
  7. </div>
  8. <div class="subscription-info">
  9. <p class="mt-3 mb-6">
  10. Pour vous abonner au logiciel, téléchargez et remplissez le formulaire
  11. avant de nous le transmettre
  12. </p>
  13. <a
  14. href="/files/Bon_De_Commande_Artist_Public-2024.pdf"
  15. target="_blank"
  16. class="download-button"
  17. >
  18. Télécharger le formulaire d'abonnement
  19. </a>
  20. </div>
  21. <div class="subscription-steps">
  22. <ol>
  23. <li class="mt-6">Téléchargez et complétez le formulaire</li>
  24. <li>Réglez votre abonnement par virement ou par chèque</li>
  25. <li>
  26. Après réception de votre formulaire d'adhésion et de votre règlement,
  27. nous vous ouvrons le service choisi. Vous recevrez alors un mail avec
  28. votre identifiant de connexion, votre mot de passe, ainsi que l'URL de
  29. votre site internet.
  30. </li>
  31. </ol>
  32. </div>
  33. </template>
  34. <script setup lang="ts"></script>
  35. <style scoped lang="scss">
  36. .profile-circle {
  37. top: 3rem;
  38. width: 100px;
  39. height: 100px;
  40. position: relative;
  41. background-color: var(--on-neutral-color);
  42. border-radius: 50%;
  43. margin-left: 11rem;
  44. padding-top: 12px;
  45. @media (max-width: 1240px) {
  46. margin-left: auto;
  47. margin-right: auto;
  48. }
  49. }
  50. .subscription-info {
  51. margin-left: 4rem;
  52. background: var(--secondary-color);
  53. border-radius: 10px;
  54. height: 15rem;
  55. width: 20rem;
  56. padding: 1rem;
  57. margin-top: 1rem;
  58. display: flex;
  59. flex-direction: column;
  60. justify-content: center;
  61. color: var(--on-secondary-color);
  62. text-align: center;
  63. font-size: 1rem;
  64. font-weight: 300;
  65. line-height: 18px;
  66. @media (max-width: 1240px) {
  67. width: 80%;
  68. }
  69. @media (max-width: 600px) {
  70. width: 100%;
  71. margin-left: auto;
  72. margin-right: auto;
  73. }
  74. }
  75. .download-button {
  76. font-weight: 700;
  77. background-color: var(--on-neutral-color);
  78. color: var(--neutral-color);
  79. padding: 10px 20px;
  80. border-radius: 5px;
  81. text-decoration: none;
  82. display: inline-block;
  83. text-align: center;
  84. }
  85. .subscription-steps ol {
  86. list-style-type: decimal;
  87. padding-left: 2rem;
  88. color: var(--on-neutral-color);
  89. font-size: 16px;
  90. font-weight: 300;
  91. line-height: 20px;
  92. margin-left: 3rem;
  93. width: 20rem;
  94. @media (max-width: 1240px) {
  95. width: 80%;
  96. }
  97. @media (max-width: 600px) {
  98. width: 100%;
  99. margin-left: auto;
  100. margin-right: auto;
  101. }
  102. }
  103. </style>