@@ -18,15 +18,15 @@ <h1 class="font-h1 mb-8">{{ .Title }}</h1>
1818 < label for ="firstName " class ="block text-sm font-medium text-gray-700 mb-2 ">
1919 {{ i18n "partner_first_name" }} < span class ="text-red-500 " aria-label ="required "> *</ span >
2020 </ label >
21- < input type ="text " id ="firstName " name ="firstName " x-model ="submitData.firstName " class ="block input-box w-full " required aria-required ="true " @blur ="$el.classList.add('show-invalid') ">
21+ < input type ="text " id ="firstName " name ="firstName " x-model ="submitData.firstName " class ="block input-box w-full " maxlength =" 100 " required aria-required ="true " @blur ="$el.classList.add('show-invalid') ">
2222 </ div >
2323
2424 <!-- Last Name -->
2525 < div >
2626 < label for ="lastName " class ="block text-sm font-medium text-gray-700 mb-2 ">
2727 {{ i18n "partner_last_name" }} < span class ="text-red-500 " aria-label ="required "> *</ span >
2828 </ label >
29- < input type ="text " id ="lastName " name ="lastName " x-model ="submitData.lastName " class ="block input-box w-full " required aria-required ="true " @blur ="$el.classList.add('show-invalid') ">
29+ < input type ="text " id ="lastName " name ="lastName " x-model ="submitData.lastName " class ="block input-box w-full " maxlength =" 100 " required aria-required ="true " @blur ="$el.classList.add('show-invalid') ">
3030 </ div >
3131 </ div >
3232
@@ -43,15 +43,15 @@ <h1 class="font-h1 mb-8">{{ .Title }}</h1>
4343 < label for ="company " class ="block text-sm font-medium text-gray-700 mb-2 ">
4444 {{ i18n "partner_company" }} < span class ="text-red-500 " aria-label ="required "> *</ span >
4545 </ label >
46- < input type ="text " id ="company " name ="company " x-model ="submitData.company " class ="block input-box w-full " required aria-required ="true " @blur ="$el.classList.add('show-invalid') ">
46+ < input type ="text " id ="company " name ="company " x-model ="submitData.company " class ="block input-box w-full " maxlength =" 200 " required aria-required ="true " @blur ="$el.classList.add('show-invalid') ">
4747 </ div >
4848
4949 <!-- Company Website -->
5050 < div class ="mb-6 ">
5151 < label for ="website " class ="block text-sm font-medium text-gray-700 mb-2 ">
5252 {{ i18n "partner_website" }}
5353 </ label >
54- < input type ="url " id ="website " name ="website " x-model ="submitData.website " class ="block input-box w-full " placeholder ="https:// ">
54+ < input type ="url " id ="website " name ="website " x-model ="submitData.website " class ="block input-box w-full " maxlength =" 200 " placeholder ="https:// ">
5555 </ div >
5656
5757 <!-- Partnership Type -->
@@ -74,7 +74,7 @@ <h1 class="font-h1 mb-8">{{ .Title }}</h1>
7474 < label for ="message " class ="block text-sm font-medium text-gray-700 mb-2 ">
7575 {{ i18n "partner_message" }}
7676 </ label >
77- < textarea id ="message " name ="message " x-model ="submitData.message " rows ="4 " class ="block input-box w-full " placeholder ="{{ i18n "partner_message_placeholder " }}"> </ textarea >
77+ < textarea id ="message " name ="message " x-model ="submitData.message " rows ="4 " class ="block input-box w-full " maxlength =" 2000 " placeholder ="{{ i18n "partner_message_placeholder " }}"> </ textarea >
7878 </ div >
7979
8080 <!-- Terms & Privacy Acceptance -->
0 commit comments