@@ -18,15 +18,15 @@ <h1 class="font-h1 mb-8">{{ .Title }}</h1>
18
18
< label for ="firstName " class ="block text-sm font-medium text-gray-700 mb-2 ">
19
19
{{ i18n "partner_first_name" }} < span class ="text-red-500 " aria-label ="required "> *</ span >
20
20
</ 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') ">
22
22
</ div >
23
23
24
24
<!-- Last Name -->
25
25
< div >
26
26
< label for ="lastName " class ="block text-sm font-medium text-gray-700 mb-2 ">
27
27
{{ i18n "partner_last_name" }} < span class ="text-red-500 " aria-label ="required "> *</ span >
28
28
</ 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') ">
30
30
</ div >
31
31
</ div >
32
32
@@ -43,15 +43,15 @@ <h1 class="font-h1 mb-8">{{ .Title }}</h1>
43
43
< label for ="company " class ="block text-sm font-medium text-gray-700 mb-2 ">
44
44
{{ i18n "partner_company" }} < span class ="text-red-500 " aria-label ="required "> *</ span >
45
45
</ 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') ">
47
47
</ div >
48
48
49
49
<!-- Company Website -->
50
50
< div class ="mb-6 ">
51
51
< label for ="website " class ="block text-sm font-medium text-gray-700 mb-2 ">
52
52
{{ i18n "partner_website" }}
53
53
</ 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:// ">
55
55
</ div >
56
56
57
57
<!-- Partnership Type -->
@@ -74,7 +74,7 @@ <h1 class="font-h1 mb-8">{{ .Title }}</h1>
74
74
< label for ="message " class ="block text-sm font-medium text-gray-700 mb-2 ">
75
75
{{ i18n "partner_message" }}
76
76
</ 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 >
78
78
</ div >
79
79
80
80
<!-- Terms & Privacy Acceptance -->
0 commit comments