feat: adding signup page
Some checks failed
Format / formatting (push) Successful in 5s
Build / build (push) Successful in 38s
CI / build (push) Failing after 8s
Format / formatting (pull_request) Successful in 5s

This commit is contained in:
ALAMI Adnane 2025-04-16 10:59:23 +02:00
parent ba99b3c2b0
commit 6b3cb2610d

View File

@ -113,7 +113,10 @@
</script> </script>
<style scoped> <style scoped>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
.add-project-form { .add-project-form {
font-family: 'Inter', sans-serif;
max-width: 600px; max-width: 600px;
margin: 0 auto; margin: 0 auto;
padding: 20px; padding: 20px;
@ -122,6 +125,7 @@
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
} }
/* Le reste reste inchangé */
h2 { h2 {
margin-bottom: 20px; margin-bottom: 20px;
font-size: 24px; font-size: 24px;
@ -141,7 +145,7 @@
} }
label { label {
font-weight: bold; font-weight: 500;
margin-bottom: 5px; margin-bottom: 5px;
} }
@ -166,6 +170,7 @@
cursor: pointer; cursor: pointer;
font-size: 1em; font-size: 1em;
width: 100%; width: 100%;
font-weight: 500;
} }
button:hover { button:hover {
@ -182,5 +187,4 @@
border-color: #4CAF50; border-color: #4CAF50;
outline: none; outline: none;
} }
</style> </style>